diff --git a/Convex_hull_3/include/CGAL/Indexed_triangle_set.h b/Convex_hull_3/include/CGAL/Indexed_triangle_set.h index e39b8c8d09f..5a5741f4efe 100644 --- a/Convex_hull_3/include/CGAL/Indexed_triangle_set.h +++ b/Convex_hull_3/include/CGAL/Indexed_triangle_set.h @@ -18,7 +18,7 @@ #include #include -#include +#include #include namespace CGAL { @@ -59,7 +59,7 @@ std::ostream& operator<<(std::ostream& os, const Indexed_triangle_set

& its) for(const std::array f : its.faces){ os << f[0] << " "<< f[1] << " "<< f[2] << "\n"; } - std::cout << std::flush; + os << std::flush; return os; } @@ -116,5 +116,6 @@ struct graph_traits> typedef void* halfedge_descriptor; }; -} // boost -#endif +} // namespace boost + +#endif // CGAL_INDEXED_TRIANGLE_SET_H