Fix uninitialized member in Single_wall_creator.h

This commit is contained in:
Giles Bathgate 2020-11-18 07:43:12 +00:00
parent 1cebf95ac7
commit b8ed9ff04c
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class Single_wall_creator : public Modifier_base<typename Nef_::SNC_and_PL> {
public:
Single_wall_creator(SVertex_handle e, Vector_3 d)
: ein(e), dir(d)
: ein(e), dir(d), sncp(nullptr), pl(nullptr)
#ifndef CGAL_NEF_NO_INDEXED_ITEMS
, index1(0), index2(0)
#endif