From d4a1e4192ff76d6045a2368795b31895134bb65a Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Thu, 23 Aug 2007 08:05:09 +0000 Subject: [PATCH] cleanup --- .../include/CGAL/Arr_geometry_traits/Segment_assertions.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); }