From 49efe65a08dcf8476edf52d8584bb52b9c5a77dc Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Thu, 5 Apr 2012 01:20:51 +0000 Subject: [PATCH] Remove superfluous ; after closing } of if statement git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12966 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/python.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/python.cxx b/Source/Modules/python.cxx index fdc2b9d5d..c762fb93c 100644 --- a/Source/Modules/python.cxx +++ b/Source/Modules/python.cxx @@ -3102,7 +3102,7 @@ public: Printf(f_directors_h, " Swig::DirectorMethodException::raise(msg.c_str());\n"); Printf(f_directors_h, " }\n"); Printf(f_directors_h, " vtable[method_index] = method;\n"); - Printf(f_directors_h, " };\n"); + Printf(f_directors_h, " }\n"); Printf(f_directors_h, " return method;\n"); Printf(f_directors_h, " }\n"); Printf(f_directors_h, "private:\n");