mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +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
|
@ -77,7 +77,8 @@ namespace array {
|
|||
|
||||
bool solver::post_visit(expr* e, bool sign, bool root) {
|
||||
euf::enode* n = expr2enode(e);
|
||||
app* a = to_app(e);
|
||||
app *a = to_app(e);
|
||||
(void)a;
|
||||
SASSERT(!n || !n->is_attached_to(get_id()));
|
||||
if (!n)
|
||||
n = mk_enode(e, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue