From 93e3bca42042a7133b0627b4cf26600f73c70625 Mon Sep 17 00:00:00 2001 From: Lefteris Karapetsas Date: Thu, 15 Jan 2015 13:33:58 +0100 Subject: [PATCH] Update ExpressionCompiler.cpp --- ExpressionCompiler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 2e208a06b..75b3f15c3 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -344,10 +344,9 @@ 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 - (void) _newExpression; return false; }