From b80f4e9225e6f99a99688970016b81882a5418f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Fri, 29 May 2020 16:49:11 +0200 Subject: [PATCH] Tiny verbose change --- Stream_support/include/CGAL/IO/GOCAD.h | 2 +- Stream_support/include/CGAL/IO/STL.h | 5 +++-- Stream_support/include/CGAL/IO/STL/STL_reader.h | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Stream_support/include/CGAL/IO/GOCAD.h b/Stream_support/include/CGAL/IO/GOCAD.h index c172a48f22d..98c1d20cc50 100644 --- a/Stream_support/include/CGAL/IO/GOCAD.h +++ b/Stream_support/include/CGAL/IO/GOCAD.h @@ -41,7 +41,7 @@ bool read_GOCAD(std::istream& is, PointRange& points, PolygonRange& polygons, const CGAL_BGL_NP_CLASS&, - bool verbose = false) + bool verbose = true) { typedef typename boost::range_value::type Point; typedef typename boost::range_value::type Poly; diff --git a/Stream_support/include/CGAL/IO/STL.h b/Stream_support/include/CGAL/IO/STL.h index e528bc4fa3b..a41e04fd785 100644 --- a/Stream_support/include/CGAL/IO/STL.h +++ b/Stream_support/include/CGAL/IO/STL.h @@ -18,6 +18,7 @@ #include #include +#include #include #include @@ -35,8 +36,8 @@ template ::type Point; typedef typename boost::range_value::type Triangle; @@ -114,7 +114,7 @@ template bool parse_ASCII_STL(std::istream& is, PointRange& points, TriangleRange& facets, - bool verbose = false) + bool verbose = true) { typedef typename boost::range_value::type Point; @@ -166,7 +166,7 @@ template bool parse_binary_STL(std::istream& is, PointRange& points, TriangleRange& facets, - bool verbose = false) + bool verbose = true) { typedef typename boost::range_value::type Point; typedef typename boost::range_value::type Triangle;