mirror of https://github.com/CGAL/cgal
fix compilation
This commit is contained in:
parent
50a3994155
commit
1748dfadbb
|
|
@ -120,7 +120,7 @@ public Q_SLOTS:
|
|||
if (c3t3_item->c3t3().is_in_complex(e)
|
||||
|| 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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -367,7 +367,7 @@ convert_to_triangulation_3(
|
|||
for (auto e : c3t3.edges_in_complex())
|
||||
{
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue