Commit ea9264e9 by Gabriel Dos Reis Committed by Gabriel Dos Reis

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

From-SVN: r51219
parent 1f3a2ce1
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment