From 2bd53d9a3242227f04a2a2681d12ae0bf6d68cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Mon, 22 Jun 2020 11:55:19 +0200 Subject: [PATCH] Remove superfluous is_valid(g) check (already tested in builder) --- 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 40052a2b4d4..499538f62af 100644 --- a/BGL/include/CGAL/boost/graph/IO/GOCAD.h +++ b/BGL/include/CGAL/boost/graph/IO/GOCAD.h @@ -128,7 +128,7 @@ bool read_GOCAD(std::istream& is, name_and_color.first = builder.name; name_and_color.second = builder.color; - return is_valid(g); // @fixme keep validity check? + return true; } template