Fixed argument mismatch error.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@603 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-07-24 14:48:08 +00:00
commit 89c389114f

View file

@ -1698,9 +1698,9 @@ void cplus_emit_destructor(char *classname, char *classtype, char *classrename,
lang->create_function(Wrapper_Getname(w),iname,Wrapper_Gettype(w), Wrapper_Getparms(w));
} else {
if (CPlusPlus)
emit_set_action(Swig_cppdestructor_call(fclassname));
emit_set_action(Swig_cppdestructor_call());
else
emit_set_action(Swig_cdestructor_call(fclassname));
emit_set_action(Swig_cdestructor_call());
lang->create_function(cname, iname, Wrapper_Gettype(w), Wrapper_Getparms(w));
}
DelWrapper(w);