Fix for typedef to void *

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8529 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-01-23 21:47:16 +00:00
commit 0982b12ccd

View file

@ -11,7 +11,7 @@
%typemap(freearg) SWIGTYPE *, SWIGTYPE &, SWIGTYPE [] "";
%typemap(in) void * {
$1 = SWIG_MustGetPtr($input, NULL, $argnum, 0);
$1 = ($1_ltype)SWIG_MustGetPtr($input, NULL, $argnum, 0);
}
%typemap(freearg) void * "";