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 bc448d3..be7eb86 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -168,7 +168,7 @@ void Array::Remove(Node* node)
168 std::vector<Node*>::iterator it = _array.begin(); 168 std::vector<Node*>::iterator it = _array.begin();
169 it += pos; 169 it += pos;
170 _array.erase(it); 170 _array.erase(it);
171 delete node; 171 free(node);
172 } 172 }
173} 173}
174 174