From e075757f18add1290e18c600cdae90b483e37cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 21 Oct 2016 18:04:30 +0200 Subject: [PATCH] remove assertion always true to avoid a warning --- .../internal/Isotropic_remeshing/remesh_impl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/remesh_impl.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/remesh_impl.h index a729804c48e..fbe11ff77a6 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/remesh_impl.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/remesh_impl.h @@ -1023,7 +1023,6 @@ private: std::size_t id_in_vec = std::distance( m.remesher_ptr_->input_triangles().begin(), tr_it); - CGAL_assertion(0 <= id_in_vec); CGAL_assertion(id_in_vec < m.remesher_ptr_->input_patch_ids().size()); CGAL_assertion(*tr_it == m.remesher_ptr_->input_triangles()[id_in_vec]);