From a5b09f419764ab012c69055bda1f93d02d25de9d Mon Sep 17 00:00:00 2001 From: Michael Hemmer Date: Thu, 25 Aug 2011 13:37:54 +0000 Subject: [PATCH] enable output operators independent from SL_VERBOSE --- .../Arr_batched_point_location_traits_2.h | 2 -- .../CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h | 4 ---- .../include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h | 8 ++++---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h index 43445c61035..99138fce81a 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h @@ -209,7 +209,6 @@ public: typedef Ex_x_monotone_curve_2 X_monotone_curve_2; typedef Ex_point_2 Point_2; -#ifdef CGAL_SL_VERBOSE // For debugging purposes: friend std::ostream& operator<< (std::ostream& os, const X_monotone_curve_2& xcv) @@ -225,7 +224,6 @@ public: os << pt.base(); return (os); } -#endif /*! A functor that obtains the left endpoint of an x-monotone curve. */ class Construct_min_vertex_2 { diff --git a/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h index 5c9c95d8765..09ede1d7bf0 100644 --- a/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h @@ -180,7 +180,6 @@ public: typedef Ex_x_monotone_curve_2 X_monotone_curve_2; -#ifdef CGAL_SL_VERBOSE // For debugging purposes: friend std::ostream& operator<< (std::ostream& os, const X_monotone_curve_2& xcv) @@ -188,7 +187,6 @@ public: os << xcv.base(); return (os); } -#endif /*! * Nested extension of the point type. @@ -245,7 +243,6 @@ public: typedef Ex_point_2 Point_2; -#ifdef CGAL_SL_VERBOSE // For debugging purposes: friend std::ostream& operator<< (std::ostream& os, const Point_2& pt) @@ -253,7 +250,6 @@ public: os << pt.base(); return (os); } -#endif /*! A functor that obtains the left endpoint of an x-monotone curve. */ class Construct_min_vertex_2 { diff --git a/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h index 9d1f7ad53d1..02bd3a81618 100644 --- a/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h @@ -245,7 +245,7 @@ public: typedef Ex_x_monotone_curve_2 X_monotone_curve_2; -#ifdef CGAL_SL_VERBOSE + // For debugging purposes: friend std::ostream& operator<< (std::ostream& os, const X_monotone_curve_2& xcv) @@ -253,7 +253,7 @@ public: os << xcv.base(); return (os); } -#endif + /*! \class * Nested extension of the point type. @@ -357,7 +357,7 @@ public: typedef Ex_point_2 Point_2; -#ifdef CGAL_SL_VERBOSE + // For debugging purposes: friend std::ostream& operator<< (std::ostream& os, const Point_2& pt) @@ -365,7 +365,7 @@ public: os << pt.base(); return (os); } -#endif + /*! A functor that computes intersections between x-monotone curves. */ class Intersect_2 {