From e96499f6c6ff63d6ab4f539a6da13487cca38a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 4 Oct 2007 23:01:29 +0000 Subject: [PATCH] Find PB: SK does not work with EPEC --- .../function_objects_polynomial_sphere.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Circular_kernel_3/include/CGAL/Circular_kernel_3/function_objects_polynomial_sphere.h b/Circular_kernel_3/include/CGAL/Circular_kernel_3/function_objects_polynomial_sphere.h index fdd9338e94e..6f89141e523 100644 --- a/Circular_kernel_3/include/CGAL/Circular_kernel_3/function_objects_polynomial_sphere.h +++ b/Circular_kernel_3/include/CGAL/Circular_kernel_3/function_objects_polynomial_sphere.h @@ -50,7 +50,7 @@ template < class SK > \ typedef typename SK::Circular_arc_point_on_reference_sphere_3 Circular_arc_point_on_reference_sphere_3;\ typedef typename SK::Point_3 Point_3;\ public:\ - typedef CGAL::Comparison_result result_type;\ + typedef typename SK::Linear_kernel::Compare_ ##V## _3::result_type result_type;\ typedef Arity_tag<2> Arity;\ using SK::Linear_kernel::Compare_ ##V## _3::operator();\ result_type\ @@ -68,15 +68,15 @@ template < class SK > \ result_type\ operator() (const Circular_arc_point_on_reference_sphere_3 &p0,\ const Circular_arc_point_on_reference_sphere_3 &p1) const\ - { return (*this)(static_cast(p0), static_cast(p1)); }\ + { return (*this)(static_cast(p0), static_cast(p1)); }\ result_type\ operator() (const Circular_arc_point_on_reference_sphere_3 &p0,\ const Point_3 &p1) const\ - { return (*this)(static_cast(p0),p1);}\ + { return (*this)(static_cast(p0),p1);}\ result_type\ operator() (const Point_3 &p0,\ const Circular_arc_point_on_reference_sphere_3 &p1) const\ - { return (*this)(p0, static_cast(p1));}\ + { return (*this)(p0, static_cast(p1));}\ };\ CGAL_SPHERICAL_KERNEL_MACRO_FUNCTOR_COMPARE_(x)