mirror of https://github.com/CGAL/cgal
Revert "temporarily replace explicit call to kernel"
This reverts commit 43ef4e35ba.
This commit is contained in:
parent
e7ffd0b943
commit
67a5a69e7f
|
|
@ -443,8 +443,9 @@ private:
|
|||
const T1& obj1,
|
||||
const T2& obj2) const
|
||||
{
|
||||
return CGAL::compare(CGAL::squared_distance(p, obj1),
|
||||
CGAL::squared_distance(p, obj2));
|
||||
typename Kernel::Compare_distance_3 compare_distance =
|
||||
Kernel().compare_distance_3_object();
|
||||
return compare_distance(p,obj1,obj2);
|
||||
}
|
||||
|
||||
public:
|
||||
|
|
|
|||
Loading…
Reference in New Issue