Fix unresolved reference.

This commit is contained in:
Lymia Aluysia
2017-01-17 23:54:13 -06:00
parent 24ba3ab28a
commit b9616d09a6
+1 -1
View File
@@ -67,7 +67,7 @@ class IndexMap : private vector<Value> {
this->reserve(values.size());
for(size_t index = size() ; index < values.size() ; ++index) {
const Value& value = values[index];
push_back(value ? value->clone() : value);
vector<Value>::push_back(value ? value->clone() : value);
}
}
/// Change this map by adding an additional key and value