mirror of https://github.com/CGAL/cgal
Use std::prev() and std::next() instead of their boost equivalents
This commit is contained in:
parent
98b6cf398d
commit
c8e9357080
|
|
@ -154,8 +154,8 @@ public:
|
||||||
(*it)->set_removable(false);
|
(*it)->set_removable(false);
|
||||||
++it;
|
++it;
|
||||||
for(; it != ite; ++it){
|
for(; it != ite; ++it){
|
||||||
if(boost::next(it) != ite){
|
if(std::next(it) != ite){
|
||||||
Vertex_handle vp = *boost::prior(it), vn = *boost::next(it);
|
Vertex_handle vp = *std::prev(it), vn = *std::next(it);
|
||||||
if(vp == vn){
|
if(vp == vn){
|
||||||
(*it)->set_removable(false);
|
(*it)->set_removable(false);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue