Skip to content

Commit

Permalink
add missing const
Browse files Browse the repository at this point in the history
  • Loading branch information
janetournois committed Nov 12, 2024
1 parent 13fcef6 commit 82e2e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BGL/include/CGAL/boost/graph/IO/OM.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ bool read_OM(const std::string& fname, Graph& g, VPM vpm, VFeaturePM vfpm, EFeat
}

template <typename Graph, typename VPM, typename VFeaturePM, typename EFeaturePM>
bool write_OM(std::string fname, Graph& g, VPM vpm, VFeaturePM vfpm, EFeaturePM efpm)
bool write_OM(std::string fname, const Graph& g, VPM vpm, VFeaturePM vfpm, EFeaturePM efpm)
{
typedef OpenMesh::PolyMesh_ArrayKernelT<> OMesh;
typedef typename boost::graph_traits<OMesh>::vertex_descriptor om_vertex_descriptor;
Expand Down

0 comments on commit 82e2e7a

Please sign in to comment.