From 98c80402bca9c936c75f25a66bbafdc8e87c31bf Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Fri, 4 Sep 2020 12:27:32 +0200 Subject: [PATCH] Don't use cell info() --- Mesh_3/include/CGAL/Mesh_3/tet_soup_to_c3t3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mesh_3/include/CGAL/Mesh_3/tet_soup_to_c3t3.h b/Mesh_3/include/CGAL/Mesh_3/tet_soup_to_c3t3.h index b928aa3801f..6cacd32ebe3 100644 --- a/Mesh_3/include/CGAL/Mesh_3/tet_soup_to_c3t3.h +++ b/Mesh_3/include/CGAL/Mesh_3/tet_soup_to_c3t3.h @@ -151,14 +151,14 @@ bool build_finite_cells(Tr& tr, Cell_handle c = tr.tds().create_cell(vs[0], vs[1], vs[2], vs[3]); c->set_subdomain_index(tet[4]); // the cell's info keeps the reference of the tetrahedron - c->info() = tet[4]; // the cell's info keeps the reference of the tetrahedron + //c->info() = tet[4]; // the cell's info keeps the reference of the tetrahedron if(prevent_domain_0){ CGAL_precondition(tet[4] > 0); } else { c->set_subdomain_index(max_domain+1); // the cell's info keeps the reference of the tetrahedron - c->info() = max_domain+1; // the cell's info keeps the reference of the tetrahedron +// c->info() = max_domain+1; // the cell's info keeps the reference of the tetrahedron } // assign cells to vertices for(int j=0; j<4; ++j)