diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-05 14:51:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-05 14:51:37 +0200 |
commit | 5ef30c205e61cfe84d701dd510dddd25d0465f62 (patch) | |
tree | b4d4106712dcbf5e67c016ae95dff4f263d12b7d /idlc | |
parent | 1a7b48c1341a95d4dfd8e1f91b850b0178af0c1b (diff) |
loplugin:unnecessaryparen
Change-Id: I37833e0e19162790f4ae37d74eb63cb84434cf2e
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/parser.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index bcaeea2bc0f2..d7f63a55f152 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -622,7 +622,7 @@ interface_dcl : * Push it on the scope stack */ idlc()->scopes()->push(pInterface); - delete($1); + delete $1; } '{' { @@ -2140,7 +2140,7 @@ at_least_one_scoped_name : pScopedNames->push_back(*$1); $$ = pScopedNames; } - delete($1); + delete $1; } ; @@ -2163,7 +2163,7 @@ scoped_names : pNames->push_back(*$4); $$ = pNames; } - delete($4); + delete $4; } | /* EMPTY */ { |