3
0
Fork 0
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:
Nadav Rotem 2022-01-08 18:18:30 -08:00 committed by GitHub
parent 174889ad5e
commit 9f9543ef69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -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;
}