From 7d4ec030489156c125949af996af514342abe64d Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Wed, 30 Aug 2000 15:14:16 +0000 Subject: [PATCH] Added 'str' member to the _swig_type_info structure. This contains a "nice" string representation of the mangled datatype. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@725 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/common.swg | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/common.swg b/Lib/common.swg index cc72b4fc6..15f249290 100644 --- a/Lib/common.swg +++ b/Lib/common.swg @@ -46,6 +46,7 @@ extern "C" { typedef struct _swig_type_info { char *name; void *(*converter)(void *); + char *str; struct _swig_type_info *next; struct _swig_type_info *prev; } _swig_type_info;