Browse Source

Fixing an unused parameter warning in ExpressionCompiler

cl-refactor
Lefteris Karapetsas 10 years ago
parent
commit
b91a6c73cc
  1. 1
      libsolidity/ExpressionCompiler.cpp

1
libsolidity/ExpressionCompiler.cpp

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

Loading…
Cancel
Save