summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-09-04 09:14:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-09-04 12:27:11 +0200
commitbf8fbbaa683ef7eef5f9587b60486f622b50cb80 (patch)
treec470fb91f3d5d2576c3e877b14a67a29e90129c1 /ucb
parent3ef3569c4ae1c5319aff0664d52cbd8a8d42c909 (diff)
loplugin:unnecessaryparen (--with-webdav=serf)
Change-Id: If5b05772f2195244e509d7464f5ac3d59280c807 Reviewed-on: https://gerrit.libreoffice.org/59965 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavdatasupplier.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/webdavdatasupplier.cxx b/ucb/source/ucp/webdav/webdavdatasupplier.cxx
index 11c951f3bcd8..141ed988aa14 100644
--- a/ucb/source/ucp/webdav/webdavdatasupplier.cxx
+++ b/ucb/source/ucp/webdav/webdavdatasupplier.cxx
@@ -92,7 +92,7 @@ DataSupplier_Impl::~DataSupplier_Impl()
while ( it != end )
{
- delete (*it);
+ delete *it;
++it;
}
}