summaryrefslogtreecommitdiff
path: root/src/util/proof.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/proof.h')
-rw-r--r--src/util/proof.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/proof.h b/src/util/proof.h
index af68efa97..b34e4aed9 100644
--- a/src/util/proof.h
+++ b/src/util/proof.h
@@ -21,7 +21,7 @@
#define __CVC4__PROOF_H
#include <iosfwd>
-#include <ext/hash_map>
+#include <unordered_map>
namespace CVC4 {
@@ -29,7 +29,7 @@ class Expr;
class ProofLetCount;
struct ExprHashFunction;
-typedef __gnu_cxx::hash_map<Expr, ProofLetCount, ExprHashFunction> ProofLetMap;
+typedef std::unordered_map<Expr, ProofLetCount, ExprHashFunction> ProofLetMap;
class CVC4_PUBLIC Proof {
public:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback