mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 09:56:15 +00:00
Use nullptr rather than 0/NULL.
This commit is contained in:
parent
eea9b79035
commit
b83d6d77c9
9 changed files with 30 additions and 30 deletions
|
@ -628,7 +628,7 @@ bool bv_bounds::is_sat_core(app * v) {
|
|||
numeral new_hi = lower - one;
|
||||
numeral ptr = lower;
|
||||
if (has_neg_intervals) {
|
||||
SASSERT(negative_intervals != NULL);
|
||||
SASSERT(negative_intervals != nullptr);
|
||||
std::sort(negative_intervals->begin(), negative_intervals->end(), interval_comp);
|
||||
intervals::const_iterator e = negative_intervals->end();
|
||||
for (intervals::const_iterator i = negative_intervals->begin(); i != e; ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue