#1960 correct distinguish outer bound by pre increment

This commit is contained in:
Thomas Krijnen
2022-01-12 15:14:18 +01:00
parent be286c4d9d
commit 5f7e4793c2
+1 -1
View File
@@ -4699,7 +4699,7 @@ namespace {
}
// First check for containment in outer wire
for (auto it = wires.begin()++; it != wires.end(); ++it) {
for (auto it = ++wires.begin(); it != wires.end(); ++it) {
// Considering a single vertex is sufficient because we have already
// guaranteed that the edges of different operands do not cross.
TopoDS_Iterator it_ed(*it);