Remove superfluous is_valid(g) check (already tested in builder)

This commit is contained in:
Mael Rouxel-Labbé 2020-06-22 11:55:19 +02:00
parent 8152063e49
commit 2bd53d9a32
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ bool read_GOCAD(std::istream& is,
name_and_color.first = builder.name; name_and_color.first = builder.name;
name_and_color.second = builder.color; name_and_color.second = builder.color;
return is_valid(g); // @fixme keep validity check? return true;
} }
template <typename Graph, typename CGAL_BGL_NP_TEMPLATE_PARAMETERS> template <typename Graph, typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>