3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-27 19:08:49 +00:00

Fix inadvertent formatting changes.

This commit is contained in:
David Detlefs 2026-06-18 19:36:55 -07:00
parent 4bc4a9afae
commit d6d0d4e45a
3 changed files with 12 additions and 12 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 {
@ -137,7 +137,7 @@ public:
}
iterator find_iterator(key const & k) const {
return m_table.find(key_data{k, value()});
return m_table.find(key_data{k, value{}});
}
value const & find(key const& k) const {
@ -161,8 +161,8 @@ public:
return find_core(k) != nullptr;
}
void remove(key const &k) {
m_table.remove(key_data{k, value()});
void remove(key const & k) {
m_table.remove(key_data{k, value{}});
}
void erase(key const & k) {
@ -184,7 +184,7 @@ public:
}
return true;
}
#ifdef Z3DEBUG
bool check_invariant() {