(Fix from Jim Wilson)

* c-typeprint.c (cp_type_print_method_args): Pass -1 for show in
	recursive call to type_print.
This commit is contained in:
Fred Fish 1996-11-13 00:28:25 +00:00
parent 08af8a3312
commit 637e7c56ac
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ cp_type_print_method_args (args, prefix, varstring, staticp, stream)
i = !staticp; /* skip the class variable */
while (1)
{
type_print (args[i++], "", stream, 0);
type_print (args[i++], "", stream, -1);
if (!args[i])
{
fprintf_filtered (stream, " ...");