Remove unused variable in Z3

This commit is contained in:
Alex Beregszaszi 2017-10-18 23:18:11 +01:00
parent 7454a766b3
commit 7a4c165518

View File

@ -98,7 +98,7 @@ pair<CheckResult, vector<string>> Z3Interface::check(vector<Expression> const& _
values.push_back(toString(m.eval(toZ3Expr(e)))); values.push_back(toString(m.eval(toZ3Expr(e))));
} }
} }
catch (z3::exception const& _e) catch (z3::exception const&)
{ {
result = CheckResult::ERROR; result = CheckResult::ERROR;
values.clear(); values.clear();