Add missing const

This commit is contained in:
Mael Rouxel-Labbé 2023-05-03 11:27:28 +02:00
parent c53dfe6986
commit aa2a87e538
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,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 should probably go into BGL package (like the rest of this file).
template <typename PolygonMesh, typename OutputIterator>
OutputIterator extract_boundary_cycles(PolygonMesh& pm,
OutputIterator extract_boundary_cycles(const PolygonMesh& pm,
OutputIterator out)
{
typedef typename boost::graph_traits<PolygonMesh>::halfedge_descriptor halfedge_descriptor;