From fc6ac9a6eaed1a202f482b53712e0f5d815467e5 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Tue, 7 Sep 2004 09:33:18 +0000 Subject: [PATCH] change typemap(ignore) to typemap(in,numinputs=0) git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6236 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/python/cstring.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/python/cstring.i b/Lib/python/cstring.i index 5f9963be9..444264b44 100644 --- a/Lib/python/cstring.i +++ b/Lib/python/cstring.i @@ -267,7 +267,7 @@ */ %define %cstring_output_allocate_size(TYPEMAP, SIZE, RELEASE) -%typemap(ignore) (TYPEMAP, SIZE) ($*1_ltype temp = 0, $*2_ltype tempn) { +%typemap(in,numinputs=0) (TYPEMAP, SIZE) ($*1_ltype temp = 0, $*2_ltype tempn) { $1 = &temp; $2 = &tempn; }