diff --git a/engines/hpl1/std/map.h b/engines/hpl1/std/map.h index 0faca347d7d..3241cc1ac42 100644 --- a/engines/hpl1/std/map.h +++ b/engines/hpl1/std/map.h @@ -138,7 +138,7 @@ public: return it; } - std::pair insert(value_type const &val) { + std::pair insert(const value_type &val) { iterator it = this->lower_bound(val.first); if (it == this->end() || !(it->first == val.first)) { size_t idx = it - this->begin();