From 0d27ad18ca4b183dce5f1a2e8f188192651eb55a Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 6 Nov 2020 08:15:44 +0100 Subject: [PATCH] Base: [skip ci] fix several -Wunused-parameter warnings --- src/Base/Interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/Interpreter.cpp b/src/Base/Interpreter.cpp index 62be35f003..974171e585 100644 --- a/src/Base/Interpreter.cpp +++ b/src/Base/Interpreter.cpp @@ -979,7 +979,7 @@ bool InterpreterSingleton::convertSWIGPointerObj(const char* Module, const char* (void)TypeName; (void)obj; (void)ptr; - (flags)flags; + (void)flags; result = -1; // indicates error #endif #if PY_MAJOR_VERSION < 3