mirror of https://github.com/CGAL/cgal
comment out the private of the private constructor
to please Windows compilers
This commit is contained in:
parent
95eff93c29
commit
6736c8054e
|
|
@ -109,13 +109,14 @@ public:
|
|||
bool collinear_outside() const;
|
||||
bool locate(const Point& t, Locate_type <, 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();
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue