diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/smallmap_type.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/smallmap_type.hpp b/src/core/smallmap_type.hpp index 7cd6357ee..bdb6ed475 100644 --- a/src/core/smallmap_type.hpp +++ b/src/core/smallmap_type.hpp @@ -95,7 +95,7 @@ struct SmallMap : std::vector<SmallPair<T, U> > { */ inline bool Contains(const T &key) const { - return this->Find(key) != this->End(); + return this->Find(key) != std::vector<Pair>::end(); } /** |