From fd6825acbfca80515a7c5c41c3497c1af8d3b36a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 16 May 2017 15:52:22 +0200 Subject: [PATCH] Fixed return type in measure_tests --- .../test/Polygon_mesh_processing/measures_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/measures_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/measures_test.cpp index ef58e9169c5..3565c074914 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/measures_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/measures_test.cpp @@ -97,7 +97,7 @@ void test_pmesh(const Mesh& pmesh) std::cout << "mesh area (NP) = " << mesh_area_np << std::endl; assert(mesh_area_np > 0); - std::pair res = PMP::longest_border(pmesh); + std::pair res = PMP::longest_border(pmesh); if(res.first == boost::graph_traits::null_halfedge()){ std::cout << "mesh has no border" << std::endl; } else {