diff --git a/Point_set_3/include/CGAL/Point_set_3/IO.h b/Point_set_3/include/CGAL/Point_set_3/IO.h index a686eee0625..82773d25017 100644 --- a/Point_set_3/include/CGAL/Point_set_3/IO.h +++ b/Point_set_3/include/CGAL/Point_set_3/IO.h @@ -234,6 +234,7 @@ namespace internal virtual std::string get_string(const typename CGAL::Point_set_3::Index& index) { std::ostringstream oss; + oss.precision (std::numeric_limits::digits10 + 2); oss << get(m_pmap, index); return oss.str(); }