diff options
| author | Jabiertxof <jtx@jtx> | 2017-01-24 07:17:30 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx> | 2017-01-24 07:17:30 +0000 |
| commit | 6569c9330cb3f5378d01c4fe43c13f69d537561e (patch) | |
| tree | 3177b769003d4fba36f20364720ab7cd8e3a4db3 /src/2geom/intersection-graph.cpp | |
| parent | Fixes some compiling bug (diff) | |
| download | inkscape-6569c9330cb3f5378d01c4fe43c13f69d537561e.tar.gz inkscape-6569c9330cb3f5378d01c4fe43c13f69d537561e.zip | |
Bug fixes
(bzr r15392.1.11)
Diffstat (limited to '')
| -rw-r--r-- | src/2geom/intersection-graph.cpp | 6 |
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; } |
