Fix for directors - where a class returned by value

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8253 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-01-06 14:09:14 +00:00
commit e0089921c2

View file

@ -583,13 +583,12 @@
}
$1 = *argp; %}
%typemap(directorout) SWIGTYPE ($1_ltype argp)
%{ argp = *($&1_ltype)(void *)&$input;
if (!argp) {
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "Attempt to dereference null $1_type");
%typemap(directorout) SWIGTYPE
%{ if (!$input) {
SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "Unexpected null return for type $1_type");
return $null;
}
$1 = argp; %}
$1 = *($&1_ltype)(void *)&$input; %}
%typemap(out) SWIGTYPE
#ifdef __cplusplus