Skip to content

Commit

Permalink
Fix macos 10.14 build problem
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHoopor committed Nov 3, 2018
1 parent 8735081 commit ceb1d78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libsolidity/inlineasm/AsmParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@ bool Parser::isValidNumberLiteral(string const& _literal)
{
try
{
u256(_literal);
auto tmp = u256(_literal);
(void) tmp;
}
catch (...)
{
Expand Down

0 comments on commit ceb1d78

Please sign in to comment.