diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/unordered.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/unordered.h b/src/common/unordered.h index ec665cc0..c9cbd585 100644 --- a/src/common/unordered.h +++ b/src/common/unordered.h @@ -42,9 +42,9 @@ #include "util/hash/hash.h" template <class T, class U, class H = __gnu_cxx::hash<T> > -struct unordered_map : public hash_map<T, U, H> {}; +struct unordered_map : public __gnu_cxx::hash_map<T, U, H> {}; template <class T, class H = __gnu_cxx::hash<T> > -struct unordered_set : public hash_set<T, H> {}; +struct unordered_set : public __gnu_cxx::hash_set<T, H> {}; #elif defined(_LIBCPP_VERSION) // c++11 #include <unordered_map> |