From 00488e7790ae1b0776b1490a62a19ccf059dead5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 26 Nov 2020 18:03:24 +0100 Subject: [PATCH] fix invalid init --- Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h b/Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h index d0c825723c4..48e58fa64ec 100644 --- a/Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h +++ b/Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h @@ -32,7 +32,7 @@ class File_writer_VRML_2 std::size_t m_facets; public: - File_writer_VRML_2(): m_out(nullptr), m_facets(0) {} + File_writer_VRML_2(): m_facets(0) {} std::ostream& out() const { return m_os.os(); }