From aac4aaa0a09ec2d48965ecb3076a3ab74b841368 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Wed, 14 Dec 2005 22:58:44 +0000 Subject: [PATCH] add missing SWIGINTER/SWIGINTERINLINE git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7986 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/Modules/python.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SWIG/Source/Modules/python.cxx b/SWIG/Source/Modules/python.cxx index 2634b949d..962720698 100644 --- a/SWIG/Source/Modules/python.cxx +++ b/SWIG/Source/Modules/python.cxx @@ -1292,7 +1292,7 @@ public: String *wname = Swig_name_wrapper(symname); Printv(f->def, - "static PyObject *", wname, + "SWIGINTERN PyObject *", wname, "(PyObject *self, PyObject *args) {", NIL); @@ -1569,10 +1569,10 @@ public: Clear(f->def); if (overname) { if (noargs) { - Printv(f->def, "SWIGINTERN PyObject *", wname, + Printv(f->def, "SWIGINTERNINLINE PyObject *", wname, "(PyObject *SWIGUNUSEDPARM(self), PyObject **SWIGUNUSEDPARM(obj)) {", NIL); } else{ - Printv(f->def, "SWIGINTERN PyObject *", wname, + Printv(f->def, "SWIGINTERNINLINE PyObject *", wname, "(PyObject *SWIGUNUSEDPARM(self), PyObject **obj) {", NIL); } } else {