From ee431c8a0dba6d42e7c1382bf23e9e60ec62a44a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 10 Apr 2020 17:59:22 +0200 Subject: [PATCH] use a default that exists --- .../BGL/bench_read_from_stream_vs_add_face_and_add_faces.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BGL/test/BGL/bench_read_from_stream_vs_add_face_and_add_faces.cpp b/BGL/test/BGL/bench_read_from_stream_vs_add_face_and_add_faces.cpp index fca05a72e57..0ec8d6d519f 100644 --- a/BGL/test/BGL/bench_read_from_stream_vs_add_face_and_add_faces.cpp +++ b/BGL/test/BGL/bench_read_from_stream_vs_add_face_and_add_faces.cpp @@ -17,7 +17,7 @@ int main(int argc, char** argv) Mesh m; CGAL::Real_timer timer; timer.start(); - std::ifstream in((argc>1) ? argv[1] : "data/blobby.off"); + std::ifstream in((argc>1) ? argv[1] : "data/genus3.off"); in >> m; timer.stop(); std::cout << " is_valid? " << CGAL::is_valid_polygon_mesh(m) << "\n";