From 71fb33927ed70360073e7063c447b5ac46ee7c60 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 4 Jan 2012 19:17:44 +0100 Subject: update 2geom to r2049. fixes bugs! (bzr r10837) --- src/2geom/path-intersection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/2geom/path-intersection.h') diff --git a/src/2geom/path-intersection.h b/src/2geom/path-intersection.h index 2470e44fb..512c31167 100644 --- a/src/2geom/path-intersection.h +++ b/src/2geom/path-intersection.h @@ -57,7 +57,7 @@ Crossings curve_sweep(Path const &a, Path const &b) { std::vector bounds_a = bounds(a), bounds_b = bounds(b); std::vector > ixs = sweep_bounds(bounds_a, bounds_b); for(unsigned i = 0; i < a.size(); i++) { - for(std::vector::iterator jp = ixs[i].begin(); jp != ixs[i].end(); jp++) { + for(std::vector::iterator jp = ixs[i].begin(); jp != ixs[i].end(); ++jp) { Crossings cc = t.crossings(a[i], b[*jp]); offset_crossings(cc, i, *jp); ret.insert(ret.end(), cc.begin(), cc.end()); -- cgit v1.2.3