mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
Fix unused variable warnings. (#5760)
This commit fixes a few cases of unused variables in release builds. The commit uses the (void)xxx; syntax which is used in other parts of the code.
This commit is contained in:
parent
174889ad5e
commit
9f9543ef69
3 changed files with 5 additions and 1 deletions
|
@ -268,6 +268,7 @@ namespace qe {
|
|||
ap.set_check_purified(false);
|
||||
vector<mbp::def> defs;
|
||||
bool ok = ap.project(*mdl.get(), avars, lits, defs);
|
||||
(void)ok;
|
||||
CTRACE("qe", !ok, tout << "projection failure ignored!!!!\n");
|
||||
return defs;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue