From dd6691b2ce5c964265d05dc7bc63f9142ff8b26e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 11 Apr 2019 09:21:37 +0200 Subject: [PATCH] remove template parameter --- .../include/CGAL/Partition_traits_adapter_2.h | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Partition_2/include/CGAL/Partition_traits_adapter_2.h b/Partition_2/include/CGAL/Partition_traits_adapter_2.h index 1563b8b373c..ede0b02b9eb 100644 --- a/Partition_2/include/CGAL/Partition_traits_adapter_2.h +++ b/Partition_2/include/CGAL/Partition_traits_adapter_2.h @@ -77,7 +77,7 @@ public: } }; - template + template struct Pmap_compare_x_at_y_2 { PointPropertyMap ppmap; @@ -96,7 +96,7 @@ public: - template + template struct Pmap_collinear_are_ordered_along_line_2 { PointPropertyMap ppmap; @@ -129,24 +129,24 @@ public: typedef Pmap_fct Orientation_2; typedef Pmap_fct Compare_y_2; typedef Pmap_fct Compare_x_2; - typedef CGAL::Is_convex_2 Is_convex_2; - typedef CGAL::Is_y_monotone_2 Is_y_monotone_2; + typedef CGAL::Is_convex_2 Is_convex_2; + typedef CGAL::Is_y_monotone_2 Is_y_monotone_2; // needed by Indirect_edge_compare, used in y_monotone and greene_approx - typedef typename Kernel::Line_2 Line_2; + typedef typename Kernel::Line_2 Line_2; typedef Pmap_fct Construct_line_2; - typedef Pmap_compare_x_at_y_2 Compare_x_at_y_2; - typedef typename Kernel::Is_horizontal_2 Is_horizontal_2; + typedef Pmap_compare_x_at_y_2 Compare_x_at_y_2; + typedef typename Kernel::Is_horizontal_2 Is_horizontal_2; // needed by visibility graph and thus by optimal convex - typedef Pmap_collinear_are_ordered_along_line_2 Collinear_are_ordered_along_line_2; + typedef Pmap_collinear_are_ordered_along_line_2 Collinear_are_ordered_along_line_2; typedef Pmap_fct - Are_strictly_ordered_along_line_2; + Are_strictly_ordered_along_line_2; // needed by approx_convex (for constrained triangulation) // and optimal convex (for vis. graph) - typedef typename Kernel::Segment_2 Segment_2; + typedef typename Kernel::Segment_2 Segment_2; // needed by optimal convex (for vis. graph) typedef Pmap_fct Construct_segment_2;