diff options
author | Joshua Peraza <jperaza@chromium.org> | 2018-07-09 08:28:40 -0700 |
---|---|---|
committer | Joshua Peraza <jperaza@chromium.org> | 2018-07-09 19:25:18 +0000 |
commit | 5dc88243a6d8608ca0096ccd44614ab3742702f2 (patch) | |
tree | bd2af522c53761d39b4d9dc8aaf8c87133a17d18 /src | |
parent | iOS: disable using CFI in stackwalking (diff) | |
download | breakpad-5dc88243a6d8608ca0096ccd44614ab3742702f2.tar.xz |
Use hash_map and hash_set from __gnu_cxx
Change-Id: Ia8521e5cfd8424c5dec247503532454eb8806c48
Reviewed-on: https://chromium-review.googlesource.com/1129203
Reviewed-by: Ivan Penkov <ivanpe@chromium.org>
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> |