Commit 4e664ef1 by Kriang Lerdsuwanakij Committed by Kriang Lerdsuwanakij

* error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.

From-SVN: r53623
parent 07782718
2002-05-19 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> 2002-05-19 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
2002-05-19 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/186, DR 259 PR c++/186, DR 259
* pt.c (do_decl_instantiation): Don't complain explicit * pt.c (do_decl_instantiation): Don't complain explicit
instantiation after explicit specialization. instantiation after explicit specialization.
......
...@@ -472,7 +472,7 @@ dump_type (t, flags) ...@@ -472,7 +472,7 @@ dump_type (t, flags)
case TYPEOF_TYPE: case TYPEOF_TYPE:
output_add_string (scratch_buffer, "__typeof ("); output_add_string (scratch_buffer, "__typeof (");
dump_expr (TYPE_FIELDS (t), flags & ~TFF_EXPR_IN_PARENS); dump_expr (TYPE_FIELDS (t), flags & ~TFF_EXPR_IN_PARENS);
print_left_paren (scratch_buffer); print_right_paren (scratch_buffer);
break; break;
default: default:
......
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