summaryrefslogtreecommitdiff
path: root/src/theory/arrays/union_find.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arrays/union_find.h')
-rw-r--r--src/theory/arrays/union_find.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arrays/union_find.h b/src/theory/arrays/union_find.h
index e896784ef..eb60f339b 100644
--- a/src/theory/arrays/union_find.h
+++ b/src/theory/arrays/union_find.h
@@ -23,7 +23,7 @@
#include <utility>
#include <vector>
-#include <ext/hash_map>
+#include <unordered_map>
#include "expr/node.h"
#include "context/cdo.h"
@@ -41,7 +41,7 @@ namespace arrays {
template <class NodeType, class NodeHash>
class UnionFind : context::ContextNotifyObj {
/** Our underlying map type. */
- typedef __gnu_cxx::hash_map<NodeType, NodeType, NodeHash> MapType;
+ typedef std::unordered_map<NodeType, NodeType, NodeHash> MapType;
/**
* Our map of Nodes to their canonical representatives.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback