3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +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

@ -745,7 +745,7 @@ namespace simplex {
numeral const& base_coeff = vs.m_base_coeff;
SASSERT(!m.is_zero(coeff));
bool base_to_lower = (m.is_pos(coeff) != m.is_pos(base_coeff)) == to_lower;
eps_numeral const* bound = 0;
eps_numeral const* bound = nullptr;
if (!base_to_lower && vs.m_upper_valid) {
bound = &vs.m_upper;
}

View file

@ -233,7 +233,7 @@ namespace simplex {
return it;
}
}
return 0;
return nullptr;
}
template<typename Ext>