mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 06:20:30 +00:00
* c-exp.y (operator): Remove trailing space after "delete" and
"delete[]".
This commit is contained in:
parent
a9b8d892d6
commit
4cd182151a
@ -1,3 +1,8 @@
|
||||
2012-06-18 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* c-exp.y (operator): Remove trailing space after "delete" and
|
||||
"delete[]".
|
||||
|
||||
2012-06-18 Mark Kettenis <kettenis@gnu.org>
|
||||
Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
|
@ -1224,11 +1224,11 @@ const_or_volatile_noopt: const_and_volatile
|
||||
operator: OPERATOR NEW
|
||||
{ $$ = operator_stoken (" new"); }
|
||||
| OPERATOR DELETE
|
||||
{ $$ = operator_stoken (" delete "); }
|
||||
{ $$ = operator_stoken (" delete"); }
|
||||
| OPERATOR NEW '[' ']'
|
||||
{ $$ = operator_stoken (" new[]"); }
|
||||
| OPERATOR DELETE '[' ']'
|
||||
{ $$ = operator_stoken (" delete[] "); }
|
||||
{ $$ = operator_stoken (" delete[]"); }
|
||||
| OPERATOR '+'
|
||||
{ $$ = operator_stoken ("+"); }
|
||||
| OPERATOR '-'
|
||||
|
Loading…
Reference in New Issue
Block a user