3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-30 13:57:57 +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

@ -107,7 +107,7 @@ namespace qe {
subst_large_domain(x, eqs, uv, fml);
}
if (def) {
*def = 0; // TBD
*def = nullptr; // TBD
}
}
@ -169,13 +169,13 @@ namespace qe {
eq_atoms& get_eqs(app* x, expr* fml) {
eq_atoms* eqs = 0;
eq_atoms* eqs = nullptr;
VERIFY(m_eqs_cache.find(x, fml, eqs));
return *eqs;
}
bool update_eqs(contains_app& contains_x, expr* fml) {
eq_atoms* eqs = 0;
eq_atoms* eqs = nullptr;
if (m_eqs_cache.find(contains_x.x(), fml, eqs)) {
return true;
}