summaryrefslogtreecommitdiffstats
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-03-13 14:16:51 +0100
committerMichael Stahl <mstahl@redhat.com>2015-03-13 16:23:26 +0100
commit077723111292ea615437f3bc2f1e47cf77d7ad42 (patch)
treef851f81cea82fcbf8251f8418b3f2a26f3085f64 /include/cppuhelper
parentCppCheck cleaning : avoid static string comparison (diff)
downloadcore-077723111292ea615437f3bc2f1e47cf77d7ad42.tar.gz
core-077723111292ea615437f3bc2f1e47cf77d7ad42.zip
V803 decreased performance postfix increment
These are pretty silly anyway, but apparently it complains even about integer variables which make this rather a waste of time. Change-Id: I15e847d33d5decd2adcab04e4f1567d3997d28a2
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/interfacecontainer.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppuhelper/interfacecontainer.hxx b/include/cppuhelper/interfacecontainer.hxx
index d8038eef2ec9..ac89d619773b 100644
--- a/include/cppuhelper/interfacecontainer.hxx
+++ b/include/cppuhelper/interfacecontainer.hxx
@@ -69,7 +69,7 @@ inline ::com::sun::star::uno::Sequence< key > OMultiTypeInterfaceContainerHelper
if( static_cast<OInterfaceContainerHelper*>((*iter).second)->getLength() )
// yes, put the type in the array
pArray[i++] = (*iter).first;
- iter++;
+ ++iter;
}
if( i != nSize ) {
// may be empty container, reduce the sequence to the right size