mirror of https://github.com/CGAL/cgal
Add missing const
This commit is contained in:
parent
29379aec95
commit
fa44e3c543
|
|
@ -43,7 +43,10 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
operator!=(const OMesh_edge& other) { return !(*this == other); }
|
operator!=(const OMesh_edge& other) const
|
||||||
|
{
|
||||||
|
return !(*this == other);
|
||||||
|
}
|
||||||
|
|
||||||
Halfedge_handle
|
Halfedge_handle
|
||||||
opposite() const { return Halfedge_handle((halfedge_.idx() & 1) ? halfedge_.idx()-1 : halfedge_.idx()+1); }
|
opposite() const { return Halfedge_handle((halfedge_.idx() & 1) ? halfedge_.idx()-1 : halfedge_.idx()+1); }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue