From adb84102661eb2f83c8b83fef35d0e9f33c2637d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 28 Jan 2020 09:17:21 +0100 Subject: [PATCH] Fix output precision --- BGL/include/CGAL/boost/graph/IO/GOCAD.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BGL/include/CGAL/boost/graph/IO/GOCAD.h b/BGL/include/CGAL/boost/graph/IO/GOCAD.h index beca3bd820c..be61c8cd997 100644 --- a/BGL/include/CGAL/boost/graph/IO/GOCAD.h +++ b/BGL/include/CGAL/boost/graph/IO/GOCAD.h @@ -235,7 +235,7 @@ bool write_GOCAD(std::ostream& os, "END_ORIGINAL_COORDINATE_SYSTEM\n" "TFACE\n"; - os.precision(16); + os.precision(17); boost::container::flat_map reindex;