cppcheck
This commit is contained in:
@@ -82,7 +82,7 @@ public:
|
||||
public:
|
||||
|
||||
CompositeLoopT() : Inherited() {};
|
||||
CompositeLoopT(MeshType& _mesh) : Inherited(_mesh) {};
|
||||
explicit CompositeLoopT(MeshType& _mesh) : Inherited(_mesh) {};
|
||||
~CompositeLoopT() {}
|
||||
|
||||
public:
|
||||
|
||||
@@ -82,7 +82,7 @@ public:
|
||||
public:
|
||||
|
||||
CompositeSqrt3T() : Inherited() {};
|
||||
CompositeSqrt3T(MeshType& _mesh) : Inherited(_mesh) {};
|
||||
explicit CompositeSqrt3T(MeshType& _mesh) : Inherited(_mesh) {};
|
||||
~CompositeSqrt3T() {}
|
||||
|
||||
public:
|
||||
|
||||
@@ -106,7 +106,7 @@ public:
|
||||
{ init_weights(); }
|
||||
|
||||
|
||||
LoopT( mesh_t& _m ) : parent_t(_m), _1over8( 1.0/8.0 ), _3over8( 3.0/8.0 )
|
||||
explicit LoopT( mesh_t& _m ) : parent_t(_m), _1over8( 1.0/8.0 ), _3over8( 3.0/8.0 )
|
||||
{ init_weights(); }
|
||||
|
||||
|
||||
|
||||
@@ -107,7 +107,7 @@ public:
|
||||
{ init_weights(); }
|
||||
|
||||
|
||||
ModifiedButterflyT( mesh_t& _m) : parent_t(_m)
|
||||
explicit ModifiedButterflyT( mesh_t& _m) : parent_t(_m)
|
||||
{ init_weights(); }
|
||||
|
||||
|
||||
|
||||
@@ -119,7 +119,7 @@ public:
|
||||
InterpolatingSqrt3LGT(void) : parent_t()
|
||||
{ init_weights(); }
|
||||
|
||||
InterpolatingSqrt3LGT(MeshType &_m) : parent_t(_m)
|
||||
explicit InterpolatingSqrt3LGT(MeshType &_m) : parent_t(_m)
|
||||
{ init_weights(); }
|
||||
|
||||
virtual ~InterpolatingSqrt3LGT() {}
|
||||
|
||||
@@ -112,7 +112,7 @@ public:
|
||||
Sqrt3T(void) : parent_t(), _1over3( real_t(1.0/3.0) ), _1over27( real_t(1.0/27.0) )
|
||||
{ init_weights(); }
|
||||
|
||||
Sqrt3T(MeshType &_m) : parent_t(_m), _1over3( real_t(1.0/3.0) ), _1over27( real_t(1.0/27.0) )
|
||||
explicit Sqrt3T(MeshType &_m) : parent_t(_m), _1over3( real_t(1.0/3.0) ), _1over27( real_t(1.0/27.0) )
|
||||
{ init_weights(); }
|
||||
|
||||
virtual ~Sqrt3T() {}
|
||||
|
||||
Reference in New Issue
Block a user