summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Array.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Array.cpp b/src/Array.cpp
index 65ffaa7..23f9922 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -32,7 +32,7 @@ Array::Array(Node* parent) : Structure(PLIST_ARRAY, parent)
32 _array.clear(); 32 _array.clear();
33} 33}
34 34
35static void array_fill(Array *_this, std::vector<Node*> array, plist_t node) 35static void array_fill(Array *_this, std::vector<Node*> &array, plist_t node)
36{ 36{
37 plist_array_iter iter = NULL; 37 plist_array_iter iter = NULL;
38 plist_array_new_iter(node, &iter); 38 plist_array_new_iter(node, &iter);