summaryrefslogtreecommitdiffstats
path: root/src/Array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Array.cpp')
-rw-r--r--src/Array.cpp2
1 files changed, 1 insertions, 1 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