Add const marker

This commit is contained in:
Mael 2019-08-22 09:05:14 +02:00 committed by GitHub
parent 4bca5d114f
commit be20ddb568
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ std::size_t stitch_boundary_cycle(const typename boost::graph_traits<PolygonMesh
// not everything is always stitchable // not everything is always stitchable
std::set<halfedge_descriptor> unstitchable_halfedges; std::set<halfedge_descriptor> unstitchable_halfedges;
halfedge_descriptor null_h = boost::graph_traits<PolygonMesh>::null_halfedge(); const halfedge_descriptor null_h = boost::graph_traits<PolygonMesh>::null_halfedge();
halfedge_descriptor bh = h; halfedge_descriptor bh = h;
for(;;) // until there is nothing to stitch anymore for(;;) // until there is nothing to stitch anymore
{ {