From b18d4c2f4270b93dc1a9fca0f2e6952ba5deba6b Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 9 Dec 2015 16:52:47 +0100 Subject: [PATCH] + fix: -Wunused-variable --- src/Gui/ExpressionBinding.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/ExpressionBinding.cpp b/src/Gui/ExpressionBinding.cpp index f4ec86ef0c..e6719ce18c 100644 --- a/src/Gui/ExpressionBinding.cpp +++ b/src/Gui/ExpressionBinding.cpp @@ -172,6 +172,7 @@ bool ExpressionBinding::apply() Property * prop(path.getProperty()); assert(prop != 0); + Q_UNUSED(prop); DocumentObject * docObj(path.getDocumentObject());