From: Tom Tromey Date: Mon, 18 Jun 2012 20:23:38 +0000 (+0000) Subject: * c-exp.y (operator): Remove trailing space after "delete" and X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4cd182151a5fab5b5ac3a14460534c059ed5e22c;p=binutils-gdb.git * c-exp.y (operator): Remove trailing space after "delete" and "delete[]". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6c1019a85e5..2eea10486c3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-06-18 Tom Tromey + + * c-exp.y (operator): Remove trailing space after "delete" and + "delete[]". + 2012-06-18 Mark Kettenis Jan Kratochvil 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 '-'