Started the (most painful) process of dropping type attributes behind a function call interface.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@609 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-07-25 04:02:31 +00:00
commit 4230cc4162
15 changed files with 1152 additions and 1233 deletions

View file

@ -102,7 +102,7 @@ int ParmList_numarg(ParmList *l) {
p = Firstitem(l);
while (p) {
if (Getignore(p)) n++;
if (!Getignore(p)) n++;
p = Nextitem(l);
}
return n;