minor speed up

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7886 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-11-27 02:57:26 +00:00
commit 07d92a6095

View file

@ -3489,11 +3489,11 @@ cpp_template_decl : TEMPLATE LESSTHAN template_parms GREATERTHAN { template_para
while (p) {
String *n = Getattr(p,"name");
if (!n) n = Getattr(p,"type");
Printf(fname,"%s", n);
Append(fname,n);
p = nextSibling(p);
if (p) Putc(',',fname);
}
Printf(fname,")>");
Append(fname,")>");
Swig_symbol_cadd(fname,$$);
}
}