mirror of https://github.com/CGAL/cgal
Merge branch 'BGL-iterator_wrapper_fix-local'
Bug-fix tested in CGAL-4.3-Ic-75
This commit is contained in:
commit
60eb813338
|
|
@ -126,6 +126,17 @@ public:
|
|||
++*this;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
Self& operator--() {
|
||||
--nt;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Self operator--(int) {
|
||||
Self tmp = *this;
|
||||
--*this;
|
||||
return tmp;
|
||||
}
|
||||
};
|
||||
|
||||
template < class HDS >
|
||||
|
|
@ -197,6 +208,17 @@ public:
|
|||
++*this;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
Self& operator--() {
|
||||
--nt;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Self operator--(int) {
|
||||
Self tmp = *this;
|
||||
--*this;
|
||||
return tmp;
|
||||
}
|
||||
};
|
||||
|
||||
template < class HDS >
|
||||
|
|
|
|||
|
|
@ -176,6 +176,17 @@ public:
|
|||
++*this;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
Self& operator--() {
|
||||
--nt;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Self operator--(int) {
|
||||
Self tmp = *this;
|
||||
--*this;
|
||||
return tmp;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue