From c1956bf1fc4f5e470b90c1a5f0dd9b74a4174ab8 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@725 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Lib/common.swg | 1 + 1 file changed, 1 insertion(+) diff --git a/SWIG/Lib/common.swg b/SWIG/Lib/common.swg index cc72b4fc6..15f249290 100644 --- a/SWIG/Lib/common.swg +++ b/SWIG/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;