From 224cd9be360706b53abe68b06f9d7d5163617f7f Mon Sep 17 00:00:00 2001 From: Lefteris Karapetsas Date: Thu, 15 Jan 2015 11:22:58 +0100 Subject: [PATCH] Fixing an unused parameter warning in ExpressionCompiler --- ExpressionCompiler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index bcb577374..2e208a06b 100644 --- a/ExpressionCompiler.cpp +++ b/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; }