Add CGAL:: before compare() to avoid miximg up the functions

This commit is contained in:
Maxime Gimeno 2020-06-22 13:44:37 +02:00
parent 4dba18fe9d
commit 50e2539bd7
1 changed files with 2 additions and 2 deletions

View File

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