Merge pull request #4804 from maxGimeno/Distance_3-Fix_compare_for-leda-maxGimeno

Distance_3: Fix error with LEDA
This commit is contained in:
Laurent Rineau 2020-06-23 18:49:46 +02:00
commit 0c94ff4308
1 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ compare_distance_pssC3(
}
}
}
return compare(d1*e2, d2*e1);
return CGAL::compare(d1*e2, d2*e1);
}
template <class K>
@ -253,7 +253,7 @@ compare_distance_ppsC3(
}
}
}
return compare(d1*e2, d2);
return CGAL::compare(d1*e2, d2);
}