null attribute support in out typemap for $null special variable

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7346 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-07-22 21:50:31 +00:00
commit f2869c5565

View file

@ -126,7 +126,7 @@
%typemap(in) char * %{ $1 = $input; %}
%typemap(out) char * %{ $result = SWIG_csharp_string_callback($1); %}
%typemap(out) void ""
%typemap(out, null="") void ""
/* primitive types by const reference */
%typemap(in) const bool & (bool temp)