From 69d1af33d80652f7ef398445cbbf1ed0e3a152fc Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Tue, 3 Oct 2000 20:42:23 +0000 Subject: [PATCH] Fixed %apply merging problem. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@912 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 d71d37a00..34e99e937 100644 --- a/Source/Swig/typemap.c +++ b/Source/Swig/typemap.c @@ -192,7 +192,7 @@ Swig_typemap_clear(char *op, SwigType *type, String_or_char *name) { static void merge_attributes(Hash *target, Hash *source) { String *key; for (key = Firstkey(source); key; key = Nextkey(source)) { - if (Getattr(target,key)) continue; + /* if (Getattr(target,key)) continue; */ Setattr(target,key,Getattr(source,key)); } }