even more C++98 compatibility
This commit is contained in:
@@ -103,11 +103,11 @@ public:
|
|||||||
//@{
|
//@{
|
||||||
/// Constructor to be used with interface 2
|
/// Constructor to be used with interface 2
|
||||||
/// \see attach(), operator()(size_t), detach()
|
/// \see attach(), operator()(size_t), detach()
|
||||||
SubdividerT(void) : attached_(nullptr) { }
|
SubdividerT(void) : attached_() { }
|
||||||
|
|
||||||
/// Constructor to be used with interface 1 (calls attach())
|
/// Constructor to be used with interface 1 (calls attach())
|
||||||
/// \see operator()( MeshType&, size_t )
|
/// \see operator()( MeshType&, size_t )
|
||||||
SubdividerT( MeshType &_m ) : attached_(nullptr) { attach(_m); }
|
SubdividerT( MeshType &_m ) : attached_(NULL) { attach(_m); }
|
||||||
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user