summaryrefslogtreecommitdiff
path: root/gdb/c-exp.y
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-06-18 20:23:30 +0000
committerTom Tromey <tromey@redhat.com>2012-06-18 20:23:30 +0000
commit69a179f1518fae5168238f8775ff46013d0d155e (patch)
tree75c2ffbba8ca1e3fa00a0b565c7cfcc63b94b873 /gdb/c-exp.y
parent8c4beaf3246489371aa612d93975912b3658d69b (diff)
downloadgdb-69a179f1518fae5168238f8775ff46013d0d155e.tar.gz
* c-exp.y (operator): Remove trailing space after "delete" and
"delete[]".
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r--gdb/c-exp.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y
index 1e14337da42..bf53fbcc384 100644
--- a/gdb/c-exp.y
+++ b/gdb/c-exp.y
@@ -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 '-'