summaryrefslogtreecommitdiff
path: root/src/theory/arith/cut_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/cut_log.h')
-rw-r--r--src/theory/arith/cut_log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/cut_log.h b/src/theory/arith/cut_log.h
index 77273f609..7d41666e7 100644
--- a/src/theory/arith/cut_log.h
+++ b/src/theory/arith/cut_log.h
@@ -20,7 +20,7 @@
#pragma once
-#include <ext/hash_map>
+#include <unordered_map>
#include <map>
#include <set>
#include <vector>
@@ -179,7 +179,7 @@ private:
int d_upId;
public:
- typedef __gnu_cxx::hash_map<int, ArithVar> RowIdMap;
+ typedef std::unordered_map<int, ArithVar> RowIdMap;
private:
RowIdMap d_rowId2ArithVar;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback