diff --git a/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/Tetrahedral_remeshing_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/Tetrahedral_remeshing_plugin.cpp index a64a44fa331..832fc316a44 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/Tetrahedral_remeshing_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Tetrahedral_remeshing/Tetrahedral_remeshing_plugin.cpp @@ -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(e); + Vertex_pair evv = CGAL::Tetrahedral_remeshing::make_vertex_pair(e); constraints.insert(evv); } } diff --git a/Tetrahedral_remeshing/include/CGAL/tetrahedral_remeshing.h b/Tetrahedral_remeshing/include/CGAL/tetrahedral_remeshing.h index 8b8fca10cce..3eac9a222bd 100644 --- a/Tetrahedral_remeshing/include/CGAL/tetrahedral_remeshing.h +++ b/Tetrahedral_remeshing/include/CGAL/tetrahedral_remeshing.h @@ -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(e);//ordered pair + = CGAL::Tetrahedral_remeshing::make_vertex_pair(e);//ordered pair put(ecmap, evv, true); } }