Do not initialize

This commit is contained in:
Andreas Fabri 2019-02-06 17:28:38 +01:00
parent 10914d2b8b
commit 9bd443da29
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ class RC_vertex_d
public:
RC_vertex_d(Simplex_handle s, int i, const Point_d& p) :
s_(s), index_(i), point_(p) {}
RC_vertex_d(const Point_d& p) : index_(-42), point_(p), pp(NULL) {}
RC_vertex_d() : s_(), index_(-42), pp(NULL) {}
RC_vertex_d(const Point_d& p) : point_(p), pp(NULL) {}
RC_vertex_d() : s_(), pp(NULL) {}
// beware that ass_point was initialized here by nil_point
~RC_vertex_d() {}