Skip to content

Commit 720360b

Browse files
committed
fix default visitor type
1 parent 6510587 commit 720360b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lab/demo/Lab/Plugins/PMP/Isotropic_remeshing_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class CGAL_Lab_isotropic_remeshing_plugin :
180180
typedef Scene_polyhedron_selection_item::Is_constrained_map<Edge_set> Edge_constrained_pmap;
181181

182182
struct Selection_updater_visitor
183-
: public CGAL::Polygon_mesh_processing::Hole_filling::Default_visitor
183+
: public CGAL::Polygon_mesh_processing::Triangulate_faces::Default_visitor<SMesh>
184184
{
185185
typedef typename Scene_polyhedron_selection_item::Selection_set_facet Container;
186186
Container& faces;

Lab/demo/Lab/Plugins/PMP/Triangulate_facets_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class CGAL_Lab_triangulate_facets_plugin :
2424
typedef boost::graph_traits<FaceGraph>::face_descriptor face_descriptor;
2525

2626
struct Selection_updater_visitor
27-
: public CGAL::Polygon_mesh_processing::Hole_filling::Default_visitor
27+
: public CGAL::Polygon_mesh_processing::Triangulate_faces::Default_visitor<SMesh>
2828
{
2929
typedef typename Scene_polyhedron_selection_item::Selection_set_facet Container;
3030
Container& faces;

0 commit comments

Comments
 (0)