diff --git a/BGL/include/CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h b/BGL/include/CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h index 7ff616a2f48..4d9386b8fe7 100644 --- a/BGL/include/CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h +++ b/BGL/include/CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h @@ -660,7 +660,8 @@ void clear(OpenMesh::PolyMesh_ArrayKernelT& sm) template bool read_off(std::istream& is, OpenMesh::PolyMesh_ArrayKernelT& sm) { - return OpenMesh::IO::read_mesh(sm, is, ".OFF"); + OpenMesh::IO::Options ropt; + return OpenMesh::IO::read_mesh(sm, is, ".OFF", ropt, false); }