From 23885b06b185142d6ef4a3ceccfd3b5ad915a65f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 17 Jan 2018 09:01:09 +0200 Subject: loplugin:unnecessaryparen extend to delete statements Change-Id: Ic4383ea948876a26f791f0e5b0110cef978a26e1 Reviewed-on: https://gerrit.libreoffice.org/48027 Tested-by: Jenkins Reviewed-by: Noel Grandin --- basegfx/source/polygon/b2dpolygontriangulator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basegfx/source') diff --git a/basegfx/source/polygon/b2dpolygontriangulator.cxx b/basegfx/source/polygon/b2dpolygontriangulator.cxx index 8cd4f895b14a..ed36a83b9a39 100644 --- a/basegfx/source/polygon/b2dpolygontriangulator.cxx +++ b/basegfx/source/polygon/b2dpolygontriangulator.cxx @@ -371,7 +371,7 @@ namespace basegfx while(aIter != maNewEdgeEntries.end()) { - delete (*aIter++); + delete *aIter++; } } -- cgit