3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-06 07:15:47 +00:00

Merge pull request #2 from Z3Prover/master

fix build of obj_ref_hashtable
This commit is contained in:
trinhmt 2017-12-08 17:26:43 +08:00 committed by GitHub
commit 9ea01d521a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,12 @@ class obj_ref_map {
M& m;
obj_map<Key, Value> m_table;
public:
typedef typename obj_map<Key, Value> iterator;
typedef Key key;
typedef Value value;
typedef typename obj_map<Key, Value>::key_data key_data;
typedef typename obj_map<Key, Value>::obj_map_entry obj_map_entry;
obj_ref_map(M& m):m(m) {}
~obj_ref_map() { reset(); }