mirror of https://github.com/CGAL/cgal
Add CGAL:: before compare() to avoid miximg up the functions
This commit is contained in:
parent
4dba18fe9d
commit
50e2539bd7
|
|
@ -226,7 +226,7 @@ compare_distance_pssC3(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return compare(d1*e2, d2*e1);
|
return CGAL::compare(d1*e2, d2*e1);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class K>
|
template <class K>
|
||||||
|
|
@ -262,7 +262,7 @@ compare_distance_ppsC3(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return compare(d1*e2, d2);
|
return CGAL::compare(d1*e2, d2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue