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:
commit
9ea01d521a
1 changed files with 6 additions and 0 deletions
|
@ -26,6 +26,12 @@ class obj_ref_map {
|
||||||
M& m;
|
M& m;
|
||||||
obj_map<Key, Value> m_table;
|
obj_map<Key, Value> m_table;
|
||||||
public:
|
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(M& m):m(m) {}
|
||||||
|
|
||||||
~obj_ref_map() { reset(); }
|
~obj_ref_map() { reset(); }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue