From cea522b4f8a1934036895a73f91d4788914a8476 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Mon, 23 Jan 2006 01:55:00 +0000 Subject: [PATCH] fix java/csharp overload issue git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8524 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Swig/typemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Swig/typemap.c b/Source/Swig/typemap.c index 469cc32b1..cc9176e79 100644 --- a/Source/Swig/typemap.c +++ b/Source/Swig/typemap.c @@ -1536,7 +1536,7 @@ Swig_typemap_attach_parms(const String_or_char *op, ParmList *parms, Wrapper *f) } s = Getattr(tm,k_code); - if (!s || !Len(s)) { + if (!s) { p = nextSibling(p); continue; }