summaryrefslogtreecommitdiffstats
path: root/src/Array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Array.cpp')
-rw-r--r--src/Array.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Array.cpp b/src/Array.cpp
index 2722d14..7826494 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -128,6 +128,10 @@ Array::const_iterator Array::end() const
return _array.end();
}
+const size_t Array::size() const {
+ return _array.size();
+}
+
void Array::Append(Node* node)
{
if (node)