Cleanup. Replaced Parm and ParmList data structures with new implementation.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@606 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-07-24 21:48:56 +00:00
commit e036e895d3
18 changed files with 486 additions and 724 deletions

View file

@ -96,7 +96,7 @@ typedef struct {
void *data; /* Data pointer */
int type : 4; /* Object type (max 16 -- deal with it) */
int flag_intern : 1; /* Interned object */
int flag_marked : 1; /* Mark flag */
int flag_marked : 1; /* Mark flag. Used to avoid recursive loops in places */
int flag_user : 1; /* User flag */
int flag_reserved : 1; /* Reserved flag */
int refcount : 24; /* Reference count (max 16 million) */