mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #4570 from ethereum/cleanup-catch-statements
More consistent catch statements
This commit is contained in:
commit
ff8e930054
@ -115,7 +115,7 @@ pair<CheckResult, vector<string>> CVC4Interface::check(vector<Expression> const&
|
|||||||
values.push_back(toString(m_solver.getValue(toCVC4Expr(e))));
|
values.push_back(toString(m_solver.getValue(toCVC4Expr(e))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (CVC4::Exception & e)
|
catch (CVC4::Exception const&)
|
||||||
{
|
{
|
||||||
result = CheckResult::ERROR;
|
result = CheckResult::ERROR;
|
||||||
values.clear();
|
values.clear();
|
||||||
|
Loading…
Reference in New Issue
Block a user