From ecb15612f1f42d0648e35840b5a9101bbfcb10cd Mon Sep 17 00:00:00 2001 From: Janis Born Date: Thu, 12 Jan 2017 15:19:18 +0100 Subject: [PATCH] even more C++98 compatibility --- src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh b/src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh index aa6bc331..ad6d038d 100644 --- a/src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh +++ b/src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh @@ -103,11 +103,11 @@ public: //@{ /// Constructor to be used with interface 2 /// \see attach(), operator()(size_t), detach() - SubdividerT(void) : attached_(nullptr) { } + SubdividerT(void) : attached_() { } /// Constructor to be used with interface 1 (calls attach()) /// \see operator()( MeshType&, size_t ) - SubdividerT( MeshType &_m ) : attached_(nullptr) { attach(_m); } + SubdividerT( MeshType &_m ) : attached_(NULL) { attach(_m); } //@}