mirror of https://github.com/CGAL/cgal
Merge pull request #4804 from maxGimeno/Distance_3-Fix_compare_for-leda-maxGimeno
Distance_3: Fix error with LEDA
This commit is contained in:
commit
0c94ff4308
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue