3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-20 21:03:39 +00:00

Use nullptr.

This commit is contained in:
Bruce Mitchener 2018-02-12 14:05:55 +07:00
parent f01328c65f
commit 76eb7b9ede
625 changed files with 4639 additions and 4639 deletions

View file

@ -129,7 +129,7 @@ public:
if (e) {
v = e->get_data().m_value;
}
return (0 != e);
return (nullptr != e);
}
value const& get(key const& k, value const& default_value) const {
@ -164,7 +164,7 @@ public:
bool contains(key const & k) const {
return find_core(k) != 0;
return find_core(k) != nullptr;
}
void remove(key const & k) {