summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-19 13:43:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-19 21:17:13 +0100
commit9ece0b1adae5e52c4301005514fb54750e860f6f (patch)
tree2f75821c454947e246aa7382d0630b9595c2d399 /connectivity
parent8ea2f31429475a40e22d5e86471228308526fb1e (diff)
loplugin:unnecessaryparen (macOS)
Change-Id: Ie4ae8459c0afbeac0cad1b8a30dad02535d558dd Reviewed-on: https://gerrit.libreoffice.org/48190 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/macab/MacabAddressBook.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/macab/MacabAddressBook.cxx b/connectivity/source/drivers/macab/MacabAddressBook.cxx
index 83c412d74f03..93795cbc7d89 100644
--- a/connectivity/source/drivers/macab/MacabAddressBook.cxx
+++ b/connectivity/source/drivers/macab/MacabAddressBook.cxx
@@ -99,7 +99,7 @@ MacabAddressBook::~MacabAddressBook()
iter = m_xMacabGroups.begin();
end = m_xMacabGroups.end();
for( ; iter != end; ++iter)
- delete (*iter);
+ delete *iter;
}
m_bRetrievedGroups = false;