summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Array.cpp2
-rw-r--r--src/Dictionary.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Array.cpp b/src/Array.cpp
index 7826494..d86d021 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -128,7 +128,7 @@ Array::const_iterator Array::end() const
128 return _array.end(); 128 return _array.end();
129} 129}
130 130
131const size_t Array::size() const { 131size_t Array::size() const {
132 return _array.size(); 132 return _array.size();
133} 133}
134 134
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp
index 99e3b88..4e7e19c 100644
--- a/src/Dictionary.cpp
+++ b/src/Dictionary.cpp
@@ -134,7 +134,7 @@ Dictionary::const_iterator Dictionary::end() const
134 return _map.end(); 134 return _map.end();
135} 135}
136 136
137const size_t Dictionary::size() const { 137size_t Dictionary::size() const {
138 return _map.size(); 138 return _map.size();
139} 139}
140 140