Browse Source

Merge pull request #812 from LefterisJP/sol_exprCompilerWarningFix

Fixing an unused parameter warning in ExpressionCompiler
cl-refactor
Lefteris Karapetsas 10 years ago
parent
commit
a97a45cee8
  1. 2
      libsolidity/ExpressionCompiler.cpp

2
libsolidity/ExpressionCompiler.cpp

@ -344,7 +344,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall)
return false;
}
bool ExpressionCompiler::visit(NewExpression const& _newExpression)
bool ExpressionCompiler::visit(NewExpression const&)
{
// code is created for the function call (CREATION) only
return false;

Loading…
Cancel
Save