set PyObject * out typemaps back to simple returns

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8584 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-01-28 03:38:05 +00:00
commit b8bf059066
4 changed files with 5 additions and 24 deletions

View file

@ -3,7 +3,6 @@
* ------------------------------------------------------------ */
%typemap(in) SWIG_Object "$1 = $input;";
%typemap(freearg) SWIG_Object "";
%typemap(in,noblock=1) SWIG_Object const & ($*ltype temp)
{
@ -11,9 +10,6 @@
$1 = &temp;
}
%typemap(freearg) SWIG_Object const & "";
%typemap(out,noblock=1) SWIG_Object {
%set_output($1);
}