From 43104a277232e033fadf9884a04a768e89f49fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 18 May 2022 16:49:03 +0200 Subject: [PATCH] restore data member init --- .../Region_growing_on_polygon_mesh/Polyline_graph.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Shape_detection/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/Polyline_graph.h b/Shape_detection/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/Polyline_graph.h index b1a35565d90..8fae7044d83 100644 --- a/Shape_detection/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/Polyline_graph.h +++ b/Shape_detection/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/Polyline_graph.h @@ -173,6 +173,9 @@ namespace Polygon_mesh { const EdgeRange& edge_range, FaceToRegionMap face_to_region_map, const NamedParameters& np = parameters::default_values()) + : m_vpm(parameters::choose_parameter(parameters::get_parameter( + np, internal_np::vertex_point), get_const_property_map(CGAL::vertex_point, pmesh))) + , m_segment_map(&pmesh, m_vpm) { clear();