diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-13 14:16:51 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-13 16:23:26 +0100 |
commit | 077723111292ea615437f3bc2f1e47cf77d7ad42 (patch) | |
tree | f851f81cea82fcbf8251f8418b3f2a26f3085f64 /include/basegfx | |
parent | 386a85ed50a3e4832644072950a30304ba6c58a6 (diff) |
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/basegfx')
-rw-r--r-- | include/basegfx/range/b2dconnectedranges.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basegfx/range/b2dconnectedranges.hxx b/include/basegfx/range/b2dconnectedranges.hxx index 66a8a94e226d..6473b2ddf990 100644 --- a/include/basegfx/range/b2dconnectedranges.hxx +++ b/include/basegfx/range/b2dconnectedranges.hxx @@ -190,7 +190,7 @@ namespace basegfx } else { - aCurrAggregate++; + ++aCurrAggregate; } } } |