From 57062536c3a8c6f322f68ca2ec59ec90d22e9872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 21 Mar 2024 10:32:06 +0100 Subject: [PATCH] another forgotten revert --- .../include/CGAL/Cartesian/function_objects.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h b/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h index e84312b9579..737a52dfc14 100644 --- a/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h +++ b/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h @@ -3278,8 +3278,6 @@ namespace CartesianKernelFunctors { { typedef typename K::Point_2 Point_2; typedef typename K::Line_2 Line_2; - typedef typename K::Segment_2 Segment_2; - typedef typename K::Triangle_2 Triangle_2; public: typedef Point_2 result_type; @@ -3291,14 +3289,6 @@ namespace CartesianKernelFunctors { line_project_pointC2(l.a(), l.b(), l.c(), p.x(), p.y(), x, y); return construct_point_2(x, y); } - - Point_2 - operator()( const Segment_2& s, const Point_2& p ) const - { return CommonKernelFunctors::Construct_projected_point_2()(s, p, K()); } - - Point_2 - operator()( const Triangle_2& t, const Point_2& p ) const - { return CommonKernelFunctors::Construct_projected_point_2()(t, p, K()); } };