This commit is contained in:
Jan Möbius
2019-05-28 14:22:36 +02:00
parent f468efacd0
commit 8cffe1c3b9
8 changed files with 11 additions and 11 deletions

View File

@@ -146,7 +146,7 @@ public:
public:
/// Constructor
CompositeT(Mesh& _mesh)
explicit CompositeT(Mesh& _mesh)
: subdiv_type_(0),
subdiv_rule_(NULL), /*first_rule_(NULL), last_rule_(NULL),*/ mesh_(_mesh)
{ }

View File

@@ -118,7 +118,7 @@ public:
protected:
/// Default constructor
RuleInterfaceT(Mesh& _mesh) : mesh_(_mesh) {};
RuleInterfaceT(Mesh& _mesh) : mesh_(_mesh),prev_rule_(nullptr),subdiv_rule_(nullptr),subdiv_type_(0),number_(0),n_rules_(0) {};
public: