Comma in code generator (Sergey Struzh)

This commit is contained in:
pd 2008-06-14 15:53:07 +02:00
parent e6aee2ca05
commit adbbee355e

View file

@ -155,6 +155,10 @@ void _parse_signature( const string& signature, string& type, unsigned int& i )
++i; ++i;
_parse_signature(signature, type, i); _parse_signature(signature, type, i);
type += " >"; type += " >";
if(signature[i+1])
{
type += ", ";
}
continue; continue;
} }
case ')': case ')':