mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
avoid unintialized value build warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a557913307
commit
af51d98a32
3 changed files with 33 additions and 26 deletions
|
@ -581,6 +581,9 @@ namespace algebraic_numbers {
|
|||
bool b_lt_a = lt(b, a);
|
||||
bool c_lt_b = lt(c, b);
|
||||
bool c_lt_a = lt(c, a);
|
||||
(void)b_lt_a;
|
||||
(void)c_lt_b;
|
||||
(void)c_lt_a;
|
||||
// (a <= b & b <= c) => a <= c
|
||||
// b < a or c < b or !(c < a)
|
||||
CTRACE("algebraic_bug",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue