summaryrefslogtreecommitdiffstats
path: root/src/2geom/pathvector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/pathvector.cpp')
-rw-r--r--src/2geom/pathvector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/pathvector.cpp b/src/2geom/pathvector.cpp
index 2e3de3f50..696ccad77 100644
--- a/src/2geom/pathvector.cpp
+++ b/src/2geom/pathvector.cpp
@@ -59,7 +59,7 @@ PathVector operator* (PathVector const & path_in, Matrix const &m)
PathVector reverse_paths_and_order (PathVector const & path_in)
{
PathVector path_out;
- for (PathVector::const_reverse_iterator it = path_in.rbegin(); it != path_in.rend(); it++) {
+ for (PathVector::const_reverse_iterator it = path_in.rbegin(); it != path_in.rend(); ++it) {
path_out.push_back( (*it).reverse() );
}
return path_out;