comment out the private of the private constructor

to please Windows compilers
This commit is contained in:
Mariette Yvinec 2001-03-13 18:19:35 +00:00
parent 95eff93c29
commit 6736c8054e
2 changed files with 3 additions and 2 deletions

View File

@ -109,13 +109,14 @@ public:
bool collinear_outside() const;
bool locate(const Point& t, Locate_type &lt, int &li);
private:
//private:
Triangulation_line_face_circulator_2(const Face_handle& face,
int index,
State state,
const Triangulation_2<Gt,Tds> * t,
const Point& pp,
const Point& qq);
private:
void increment();
void decrement();
};

View File

@ -36,7 +36,7 @@ public:
typedef typename GT::Point_2 Point;
Triangulation_vertex_base_2 ()
: _f(NULL)
: _p(Point()), _f(NULL)
{}
Triangulation_vertex_base_2(const Point & p, void * f = NULL)