mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
silence some build warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8cb59fe8a6
commit
6f65051f2c
3 changed files with 3 additions and 2 deletions
|
@ -212,7 +212,7 @@ public:
|
|||
bool strict = true;
|
||||
rational v;
|
||||
bool has_val =
|
||||
(m_bounds.has_upper(var, v, strict) && !strict) && v.is_unsigned() ||
|
||||
(m_bounds.has_upper(var, v, strict) && !strict && v.is_unsigned()) ||
|
||||
(m_bounds.has_lower(var, v, strict) && !strict && v.is_unsigned());
|
||||
|
||||
if (has_val) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue