Fixed a layout diff bug (compare of paths)

This commit is contained in:
Matthias Koefferlein 2020-04-25 23:20:01 +02:00
parent 849e97b88a
commit 0bc965dde9
1 changed files with 3 additions and 0 deletions

View File

@ -427,6 +427,9 @@ struct PathCompareOpWithTolerance
db::Path::iterator ia = a.begin (), ib = b.begin ();
while (ia != a.end () && ib != b.end ()) {
c = compare_point (*ia, *ib, m_tolerance);
if (c != 0) {
return c < 0;
}
++ia;
++ib;
}