From 077723111292ea615437f3bc2f1e47cf77d7ad42 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 13 Mar 2015 14:16:51 +0100 Subject: 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 --- xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmloff') diff --git a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx index be14e0eeeba6..0e2a2cbc2a24 100644 --- a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx +++ b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx @@ -127,7 +127,7 @@ bool UnoInterfaceToUniqueIdentifierMapper::findReference( const Reference< XInte if( (*rIter).second.get() == xRef.get() ) return true; - rIter++; + ++rIter; } return false; -- cgit