Commit eab049e2 by Jason Merrill Committed by Jason Merrill

* parse.y (notype_unqualified_id): Also accept ~A<int>.

From-SVN: r21870
parent 7688e2e2
1998-08-20 Jason Merrill <jason@yorick.cygnus.com>
* parse.y (notype_unqualified_id): Also accept ~A<int>.
1998-08-19 Mark Mitchell <mark@markmitchell.com>
* typeck.c (build_binary_op_nodefault): Warn on use of NULL in
......
......@@ -1279,6 +1279,8 @@ expr_no_commas:
notype_unqualified_id:
'~' see_typename identifier
{ $$ = build_parse_node (BIT_NOT_EXPR, $3); }
| '~' see_typename template_type
{ $$ = build_parse_node (BIT_NOT_EXPR, $3); }
| template_id
| operator_name
| IDENTIFIER
......
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