enable output operators independent from SL_VERBOSE

This commit is contained in:
Michael Hemmer 2011-08-25 13:37:54 +00:00
parent b32ccc4959
commit a5b09f4197
3 changed files with 4 additions and 10 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {