mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +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 false;
|
||||
} while (false);
|
||||
}
|
||||
while (true);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue