mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
Merge pull request #97 from hguenther/unstable
Expose insert_if_not_there_core method in map class
This commit is contained in:
commit
e915d0f67d
|
@ -108,6 +108,10 @@ public:
|
|||
m_table.insert(key_data(k, v));
|
||||
}
|
||||
|
||||
bool insert_if_not_there_core(key const & k, value const & v, entry *& et) {
|
||||
return m_table.insert_if_not_there_core(key_data(k,v), et);
|
||||
}
|
||||
|
||||
key_data const & insert_if_not_there(key const & k, value const & v) {
|
||||
return m_table.insert_if_not_there(key_data(k, v));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue