Commenting out unnecessary code (which some compilers barf on)

This commit is contained in:
Efi Fogel 2015-04-15 09:51:22 +03:00
parent 6cab541cdb
commit a7c602449b
1 changed files with 7 additions and 7 deletions

View File

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