Merge pull request #7418 from MaelRL/PMP-Add_missing_const-GF

Add missing const
This commit is contained in:
Laurent Rineau 2023-05-04 17:21:16 +02:00
commit 038813d7e6
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ std::size_t border_size(typename boost::graph_traits<PolygonMesh>::halfedge_desc
/// @todo It could make sense to also return the length of each cycle. /// @todo It could make sense to also return the length of each cycle.
/// @todo It should probably go into BGL package (like the rest of this file). /// @todo It should probably go into BGL package (like the rest of this file).
template <typename PolygonMesh, typename OutputIterator> template <typename PolygonMesh, typename OutputIterator>
OutputIterator extract_boundary_cycles(PolygonMesh& pm, OutputIterator extract_boundary_cycles(const PolygonMesh& pm,
OutputIterator out) OutputIterator out)
{ {
typedef typename boost::graph_traits<PolygonMesh>::halfedge_descriptor halfedge_descriptor; typedef typename boost::graph_traits<PolygonMesh>::halfedge_descriptor halfedge_descriptor;