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, 2 insertions, 2 deletions
diff --git a/src/Array.cpp b/src/Array.cpp
index 419249f..a4ea02a 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -90,9 +90,9 @@ Node* Array::Clone()
90 return new Array(*this); 90 return new Array(*this);
91} 91}
92 92
93Node* Array::operator[](unsigned int index) 93Node* Array::operator[](unsigned int array_index)
94{ 94{
95 return _array.at(index); 95 return _array.at(array_index);
96} 96}
97 97
98void Array::Append(Node* node) 98void Array::Append(Node* node)