diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Segment_assertions.h b/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Segment_assertions.h index 5e6e200ef30..2c98bcdda0b 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Segment_assertions.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Segment_assertions.h @@ -36,7 +36,7 @@ public: static bool _assert_is_point_on (const Point_2& pt, const X_monotone_curve_2& cv, - Tag_true tag) + Tag_true /* tag */) { Traits_2 traits; return (traits.compare_y_at_x_2_object() (pt, cv) == EQUAL); @@ -44,14 +44,14 @@ public: static bool _assert_is_point_on (const Point_2& pt, const X_monotone_curve_2& cv, - Tag_false tag) + Tag_false /* tag */) { return (true); } static bool _assert_is_point_on (const Point_2& pt, const Line_2& l, - Tag_true tag) + Tag_true /* tag */) { Kernel kernel; return (kernel.has_on_2_object() (l, pt)); @@ -59,7 +59,7 @@ public: static bool _assert_is_point_on (const Point_2& pt, const Line_2& l, - Tag_false tag) + Tag_false /* tag */) { return (true); }