Remove extra const in Polyhedron-modifying functions

This commit is contained in:
Mael Rouxel-Labbé 2020-06-25 16:50:59 +02:00
parent 2b18b8d8be
commit e5655f7d29
1 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ template<class Gt, class I, CGAL_HDS_PARAM_, class A>
void void
set_face(typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::halfedge_descriptor h set_face(typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::halfedge_descriptor h
, typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::face_descriptor f , typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::face_descriptor f
, const CGAL::Polyhedron_3<Gt,I,HDS,A>&) , CGAL::Polyhedron_3<Gt,I,HDS,A>&)
{ {
// set_face has become private in the halfedge provided by // set_face has become private in the halfedge provided by
// polyhedron for unknown reasons, although it used to be public // polyhedron for unknown reasons, although it used to be public
@ -304,7 +304,7 @@ template<class Gt, class I, CGAL_HDS_PARAM_, class A>
void void
set_halfedge(typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::vertex_descriptor v set_halfedge(typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::vertex_descriptor v
, typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::halfedge_descriptor h , typename boost::graph_traits< CGAL::Polyhedron_3<Gt,I,HDS,A> >::halfedge_descriptor h
, const CGAL::Polyhedron_3<Gt,I,HDS,A>&) , CGAL::Polyhedron_3<Gt,I,HDS,A>&)
{ {
typedef typename CGAL::Polyhedron_3<Gt,I,HDS,A>::Vertex::Base Sneak; typedef typename CGAL::Polyhedron_3<Gt,I,HDS,A>::Vertex::Base Sneak;
static_cast<Sneak&>(*v).set_halfedge(h); static_cast<Sneak&>(*v).set_halfedge(h);