diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-04-01 22:27:04 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-04-01 22:27:17 +0200 |
commit | b847e3c809bd662ccedf4f9a74cb19cc7c2de7dd (patch) | |
tree | 1c3a0047c66ee7faed9712ec56162ea8d3e39689 /basegfx | |
parent | 7ffc3fd98f063d0bfa5862298cc58df0ed751de3 (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: Iaf45e2b7f48ae4c5675d0b59df851dbde42ba934
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/raster/rasterconvert3d.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basegfx/source/raster/rasterconvert3d.cxx b/basegfx/source/raster/rasterconvert3d.cxx index c2c92361f9cf..501bdf93f2e5 100644 --- a/basegfx/source/raster/rasterconvert3d.cxx +++ b/basegfx/source/raster/rasterconvert3d.cxx @@ -106,7 +106,7 @@ namespace basegfx } } - aCurrentEntry++; + ++aCurrentEntry; } // sort current scanline using comparator. Only X is used there |