From b9616d09a60fd1e7e9239d6047c8cafc85205ce1 Mon Sep 17 00:00:00 2001 From: Lymia Aluysia Date: Tue, 17 Jan 2017 23:54:13 -0600 Subject: [PATCH] Fix unresolved reference. --- src/util/index_map.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/index_map.hpp b/src/util/index_map.hpp index 58bb1a7d..23b28045 100644 --- a/src/util/index_map.hpp +++ b/src/util/index_map.hpp @@ -67,7 +67,7 @@ class IndexMap : private vector { 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::push_back(value ? value->clone() : value); } } /// Change this map by adding an additional key and value