summaryrefslogtreecommitdiffstats
path: root/src/2geom/intersection-graph.cpp
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-01-24 07:17:30 +0000
committerJabiertxof <jtx@jtx>2017-01-24 07:17:30 +0000
commit6569c9330cb3f5378d01c4fe43c13f69d537561e (patch)
tree3177b769003d4fba36f20364720ab7cd8e3a4db3 /src/2geom/intersection-graph.cpp
parentFixes some compiling bug (diff)
downloadinkscape-6569c9330cb3f5378d01c4fe43c13f69d537561e.tar.gz
inkscape-6569c9330cb3f5378d01c4fe43c13f69d537561e.zip
Bug fixes
(bzr r15392.1.11)
Diffstat (limited to 'src/2geom/intersection-graph.cpp')
-rw-r--r--src/2geom/intersection-graph.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/2geom/intersection-graph.cpp b/src/2geom/intersection-graph.cpp
index d469d3ffc..cac010942 100644
--- a/src/2geom/intersection-graph.cpp
+++ b/src/2geom/intersection-graph.cpp
@@ -410,10 +410,10 @@ PathVector PathIntersectionGraph::_getResult(bool enter_a, bool enter_b)
assert(!result.back().empty());
}
- /*if (n_processed != size() * 2) {
+ if (n_processed != size() * 2) {
std::cerr << "Processed " << n_processed << " intersections, expected " << (size() * 2) << std::endl;
- }*/
- assert(n_processed == size() * 2);
+ }
+ //assert(n_processed == size() * 2);
return result;
}