mirror of https://github.com/CGAL/cgal
Commenting out unnecessary code (which some compilers barf on)
This commit is contained in:
parent
6cab541cdb
commit
a7c602449b
|
|
@ -258,14 +258,14 @@ public:
|
||||||
// code below.
|
// code below.
|
||||||
using Base::Push_front_2::operator();
|
using Base::Push_front_2::operator();
|
||||||
|
|
||||||
/*! Append a segment `seg` to an existing polyline `cv` at the front. */
|
// /*! Append a segment `seg` to an existing polyline `cv` at the front. */
|
||||||
void operator()(Curve_2& cv, const Subcurve_2& seg) const
|
// void operator()(Curve_2& cv, const Subcurve_2& seg) const
|
||||||
{ Base::Push_front_2::operator()(cv, seg); }
|
// { Base::Push_front_2::operator()(cv, seg); }
|
||||||
|
|
||||||
/*! Append a segment `seg` to an existing polyline `xcv` at the front. */
|
// /*! Append a segment `seg` to an existing polyline `xcv` at the front. */
|
||||||
void operator()(X_monotone_curve_2& xcv,
|
// void operator()(X_monotone_curve_2& xcv,
|
||||||
const X_monotone_subcurve_2& seg) const
|
// const X_monotone_subcurve_2& seg) const
|
||||||
{ Base::Push_front_2::operator()(xcv, seg); }
|
// { Base::Push_front_2::operator()(xcv, seg); }
|
||||||
|
|
||||||
/* Append a point `p` to an existing polyline `cv` at the front. */
|
/* Append a point `p` to an existing polyline `cv` at the front. */
|
||||||
void operator()(Curve_2& cv, const Point_2& p) const
|
void operator()(Curve_2& cv, const Point_2& p) const
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue