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;