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)