diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-17 09:01:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-17 09:32:03 +0100 |
commit | 23885b06b185142d6ef4a3ceccfd3b5ad915a65f (patch) | |
tree | 868cf1ca4c2d1f9e18136497fc745a74b365bced /idlc/source | |
parent | 4a64a68c6828b7cf0e57ee40817f4ab1a8a75aea (diff) |
loplugin:unnecessaryparen extend to delete statements
Change-Id: Ic4383ea948876a26f791f0e5b0110cef978a26e1
Reviewed-on: https://gerrit.libreoffice.org/48027
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idlc/source')
-rw-r--r-- | idlc/source/aststack.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/aststack.cxx b/idlc/source/aststack.cxx index 13afe71bd886..f5a3315e3b24 100644 --- a/idlc/source/aststack.cxx +++ b/idlc/source/aststack.cxx @@ -35,7 +35,7 @@ AstStack::~AstStack() for(sal_uInt32 i=0; i < m_top; i++) { if (m_stack[i]) - delete(m_stack[i]); + delete m_stack[i]; } rtl_freeMemory(m_stack); |