aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorJoshua Peraza <jperaza@chromium.org>2018-07-09 08:28:40 -0700
committerJoshua Peraza <jperaza@chromium.org>2018-07-09 19:25:18 +0000
commit5dc88243a6d8608ca0096ccd44614ab3742702f2 (patch)
treebd2af522c53761d39b4d9dc8aaf8c87133a17d18 /src/common
parentiOS: disable using CFI in stackwalking (diff)
downloadbreakpad-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/common')
-rw-r--r--src/common/unordered.h4
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>