mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 21:47:00 -04:00
Fix unresolved reference.
This commit is contained in:
@@ -67,7 +67,7 @@ class IndexMap : private vector<Value> {
|
|||||||
this->reserve(values.size());
|
this->reserve(values.size());
|
||||||
for(size_t index = size() ; index < values.size() ; ++index) {
|
for(size_t index = size() ; index < values.size() ; ++index) {
|
||||||
const Value& value = values[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
|
/// Change this map by adding an additional key and value
|
||||||
|
|||||||
Reference in New Issue
Block a user