add missing SWIGINTER/SWIGINTERINLINE

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7986 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-12-14 22:58:44 +00:00
commit aac4aaa0a0

View file

@ -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 {