* error.c (dump_type): Be careful about implicit typenames.

From-SVN: r51219
This commit is contained in:
Gabriel Dos Reis 2002-03-23 03:17:43 +00:00 committed by Gabriel Dos Reis
parent 1f3a2ce1db
commit ea9264e9a2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-03-23 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
* error.c (dump_type): Be careful about implicit typenames.
2002-03-21 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
PR C++/3656

View File

@ -459,7 +459,8 @@ dump_type (t, flags)
break;
}
case TYPENAME_TYPE:
output_add_string (scratch_buffer, "typename ");
if (!IMPLICIT_TYPENAME_P (t))
output_add_string (scratch_buffer, "typename ");
dump_typename (t, flags);
break;