Fixing an unused parameter warning in ExpressionCompiler

This commit is contained in:
Lefteris Karapetsas 2015-01-15 11:22:58 +01:00
parent 1515f140b3
commit 224cd9be36

View File

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