use CGAL::compare instead of compare to avoid Koenig lookup

This commit is contained in:
Andreas Fabri 2013-03-15 17:34:53 +01:00
parent 67226de083
commit 7bd3e3698e
1 changed files with 4 additions and 4 deletions

View File

@ -398,7 +398,7 @@ public:
const Weighted_point_3 & s,
const FT& w) const
{
return compare(
return CGAL::compare(
squared_radius_orthogonal_sphereC3(
p.x(),p.y(),p.z(),p.weight(),
q.x(),q.y(),q.z(),q.weight(),
@ -413,7 +413,7 @@ public:
const Weighted_point_3 & r,
const FT& w) const
{
return compare(
return CGAL::compare(
squared_radius_smallest_orthogonal_sphereC3(
p.x(),p.y(),p.z(),p.weight(),
q.x(),q.y(),q.z(),q.weight(),
@ -426,7 +426,7 @@ public:
const Weighted_point_3 & q,
const FT& w) const
{
return compare(
return CGAL::compare(
squared_radius_smallest_orthogonal_sphereC3(
p.x(),p.y(),p.z(),p.weight(),
q.x(),q.y(),q.z(),q.weight() ),
@ -437,7 +437,7 @@ public:
const Weighted_point_3 & p,
const FT& w) const
{
return compare(-p.weight(),w);
return CGAL::compare(-p.weight(),w);
}
};