idlc/source/parser.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 5ef30c205e61cfe84d701dd510dddd25d0465f62 Author: Stephan Bergmann <[email protected]> Date: Wed Jul 5 14:51:37 2017 +0200 loplugin:unnecessaryparen Change-Id: I37833e0e19162790f4ae37d74eb63cb84434cf2e 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 */ { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
