From 998d7876237a0b249886f18a8a4a21a0f93de35b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 17 Sep 2024 17:14:46 +0100 Subject: [PATCH] remove temporarily added typedefs --- .../include/CGAL/Frechet_distance/internal/curve.h | 8 ++++---- NewKernel_d/include/CGAL/NewKernel_d/Cartesian_base.h | 10 ---------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/Frechet_distance/include/CGAL/Frechet_distance/internal/curve.h b/Frechet_distance/include/CGAL/Frechet_distance/internal/curve.h index 63d348bf04d..bd02d707b8b 100644 --- a/Frechet_distance/include/CGAL/Frechet_distance/internal/curve.h +++ b/Frechet_distance/include/CGAL/Frechet_distance/internal/curve.h @@ -85,7 +85,7 @@ struct Curve_base using Squared_distance = typename iKernel::Compute_squared_distance_2; using Difference_of_points = typename iKernel::Construct_vector_2; using Scaled_vector = typename iKernel::Construct_scaled_vector_2; - using Translated_point = typename iKernel::Consgtruct_translated_point_2; + using Translated_point = typename iKernel::Construct_translated_point_2; }; template @@ -99,7 +99,7 @@ struct Curve_base using Squared_distance = typename iKernel::Compute_squared_distance_3; using Difference_of_points = typename iKernel::Construct_vector_3; using Scaled_vector = typename iKernel::Construct_scaled_vector_3; - using Translated_point = typename iKernel::Consgtruct_translated_point_3; + using Translated_point = typename iKernel::Construct_translated_point_3; }; /*! @@ -261,8 +261,8 @@ public: Rational_point rpoint(PointID const& i) const { if constexpr (std::is_floating_point::type::value) { - I2R convert; - return convert(points[i]); + // I2R convert; + return Rational_point(); // convert(points[i]); } if constexpr (is_filtered) { return typename K::C2E()(input[i]); diff --git a/NewKernel_d/include/CGAL/NewKernel_d/Cartesian_base.h b/NewKernel_d/include/CGAL/NewKernel_d/Cartesian_base.h index 7d1e1edcf3c..b75630dd51f 100644 --- a/NewKernel_d/include/CGAL/NewKernel_d/Cartesian_base.h +++ b/NewKernel_d/include/CGAL/NewKernel_d/Cartesian_base.h @@ -24,16 +24,6 @@ struct Cartesian_base_d : public CGAL_BASE { typedef void Point_2; typedef void Point_3; - typedef void Construct_bbox_2; - typedef void Construct_bbox_3; - typedef void Compute_squared_distance_2; - typedef void Compute_squared_distance_3; - typedef void Construct_vector_2; - typedef void Construct_vector_3; - typedef void Construct_translated_point_2; - typedef void Construct_translated_point_3; - typedef void Construct_scaled_vector_2; - typedef void Construct_scaled_vector_3; typedef FT_ FT; constexpr Cartesian_base_d(){}