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 --- sc/source/core/data/dociter.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc') diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx index 6ab77bc304be..46690d7f4bf1 100644 --- a/sc/source/core/data/dociter.cxx +++ b/sc/source/core/data/dociter.cxx @@ -2029,7 +2029,7 @@ bool ScHorizontalCellIterator::SkipInvalidInRow() { debugiter("skip empty cells at column %d, row %d\n", (int)maColPos->mnCol, (int)nRow); - maColPos++; + ++maColPos; } } @@ -2068,7 +2068,7 @@ void ScHorizontalCellIterator::Advance() assert (mbMore); assert (maColPos != maColPositions.end()); - maColPos++; + ++maColPos; SkipInvalid(); } -- cgit