From 0d523d337d3dc64ea3c64e0c8b5025ae4cc16fab Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Fri, 21 Oct 2022 09:02:31 +0200 Subject: [PATCH] Fix -Wunused-variable warning --- Source/Modules/interface.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Modules/interface.cxx b/Source/Modules/interface.cxx index 5a9242399..83a5e5f8a 100644 --- a/Source/Modules/interface.cxx +++ b/Source/Modules/interface.cxx @@ -183,6 +183,7 @@ void Swig_interface_propagate_methods(Node *n) { if (Strcmp(symname, "$ignore") != 0) { Symtab *oldscope = Swig_symbol_setscope(Getattr(n, "symtab")); Node *on = Swig_symbol_add(symname, cn); + (void)on; assert(on == cn); // Features from the copied base class method are already present, now add in features specific to the added method in the derived class