fix compilation

This commit is contained in:
Jane Tournois 2023-12-22 14:52:03 +01:00
parent 50a3994155
commit 1748dfadbb
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ public Q_SLOTS:
if (c3t3_item->c3t3().is_in_complex(e) if (c3t3_item->c3t3().is_in_complex(e)
|| CGAL::Tetrahedral_remeshing::protecting_balls_intersect(e, c3t3)) || CGAL::Tetrahedral_remeshing::protecting_balls_intersect(e, c3t3))
{ {
Vertex_pair evv = CGAL::Tetrahedral_remeshing::make_vertex_pair<Tr>(e); Vertex_pair evv = CGAL::Tetrahedral_remeshing::make_vertex_pair(e);
constraints.insert(evv); constraints.insert(evv);
} }
} }

View File

@ -367,7 +367,7 @@ convert_to_triangulation_3(
for (auto e : c3t3.edges_in_complex()) for (auto e : c3t3.edges_in_complex())
{ {
const Edge_vv evv const Edge_vv evv
= CGAL::Tetrahedral_remeshing::make_vertex_pair<Tr>(e);//ordered pair = CGAL::Tetrahedral_remeshing::make_vertex_pair(e);//ordered pair
put(ecmap, evv, true); put(ecmap, evv, true);
} }
} }