diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h index 084b20ca59d..83cb9629627 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h @@ -183,7 +183,7 @@ void smooth_mesh(const FaceRange& faces, } ECMap ecmap = choose_parameter(get_parameter(np, internal_np::edge_is_constrained), - Constant_property_map(false)); + Constant_property_map(false)); // a constrained edge has constrained extremities for(face_descriptor f : faces) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/stitch_borders.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/stitch_borders.h index 6a2a519fca4..dfdaab30ec0 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/stitch_borders.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/stitch_borders.h @@ -843,7 +843,7 @@ std::size_t stitch_borders(PolygonMesh& pmesh, template std::size_t stitch_borders(PolygonMesh& pmesh, - const HalfedgePairsRange& hedge_pairs_to_stitch) + const HalfedgePairsRange& hedge_pairs_to_stitch) { return stitch_borders(pmesh, hedge_pairs_to_stitch, CGAL::parameters::all_default()); } @@ -890,9 +890,9 @@ std::size_t stitch_borders(PolygonMesh& pmesh, halfedge_descriptor; std::vector< std::pair > hedge_pairs_to_stitch; - typedef typename GetVertexPointMap::const_type VPMap; - VPMap vpm = choose_parameter(get_parameter(np, internal_np::vertex_point), - get_const_property_map(vertex_point, pmesh)); + typedef typename GetVertexPointMap::const_type VPM + VPM vpm = choose_parameter(get_parameter(np, internal_np::vertex_point), + get_const_property_map(vertex_point, pmesh)); #ifdef CGAL_PMP_STITCHING_DEBUG std::cout << "------- Stitch cycles..." << std::endl; @@ -907,7 +907,7 @@ std::size_t stitch_borders(PolygonMesh& pmesh, internal::collect_duplicated_stitchable_boundary_edges(pmesh, std::back_inserter(hedge_pairs_to_stitch), - internal::Less_for_halfedge(pmesh, vpm), + internal::Less_for_halfedge(pmesh, vpm), vpm, np); res += stitch_borders(pmesh, hedge_pairs_to_stitch, np);