3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-22 16:40:29 +00:00

Fix more inadvertent formatting changes.

This commit is contained in:
David Detlefs 2026-06-18 19:40:53 -07:00
parent d6d0d4e45a
commit 9a0272528a
3 changed files with 9 additions and 9 deletions

View file

@ -115,7 +115,7 @@ public:
}
entry * find_core(key const & k) const {
return m_table.find_core(key_data{k, value{}});
return m_table.find_core(key_data{k, value{}});
}
bool find(key const & k, value & v) const {
@ -164,7 +164,7 @@ public:
void remove(key const & k) {
m_table.remove(key_data{k, value{}});
}
void erase(key const & k) {
remove(k);
}
@ -184,7 +184,7 @@ public:
}
return true;
}
#ifdef Z3DEBUG
bool check_invariant() {

View file

@ -161,8 +161,8 @@ public:
obj_map_entry * insert_if_not_there3(Key * k, Value const & v) {
return m_table.insert_if_not_there2({k, v});
}
obj_map_entry *find_core(Key * k) const {
obj_map_entry * find_core(Key * k) const {
return m_table.find_core({k});
}
@ -193,8 +193,8 @@ public:
value & operator[](key * k) {
return find(k);
}
iterator find_iterator(Key * k) const {
iterator find_iterator(Key * k) const {
return m_table.find(key_data{k});
}
@ -203,7 +203,7 @@ public:
}
void remove(Key * k) {
m_table.remove(key_data{k, value()});
m_table.remove(key_data{k, value{}});
}
void erase(Key * k) {

View file

@ -121,7 +121,7 @@ public:
return true;
}
bool contains(symbol key) const {
bool contains(symbol key) const {
return m_sym_table.contains(key_data{key});
}