mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
use while (true) in do loops with continue
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
be7856c57d
commit
36453c5949
|
@ -984,7 +984,8 @@ bool arith_util::is_extended_numeral(expr* term, rational& r) const {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
} while (false);
|
}
|
||||||
|
while (true);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue