Merge pull request #3105 from ethereum/z3-unused-var

Remove unused variable in Z3
This commit is contained in:
chriseth
2017-10-19 11:09:09 +02:00
committed by GitHub
+1 -1
View File
@@ -98,7 +98,7 @@ pair<CheckResult, vector<string>> Z3Interface::check(vector<Expression> const& _
values.push_back(toString(m.eval(toZ3Expr(e))));
}
}
catch (z3::exception const& _e)
catch (z3::exception const&)
{
result = CheckResult::ERROR;
values.clear();