Fix errors with iterator conversions

This commit is contained in:
Simon Giraudot 2021-03-25 10:34:21 +01:00
parent 3cf1853832
commit 2923ea4a2b
1 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ public:
// ---------------------------------
Self& operator--() {
this->nt = (*this->nt).prev();
this->nt = typename It::Iterator((*this->nt).prev());
return *this;
}
Self operator--(int) {
@ -279,7 +279,7 @@ public:
// ---------------------------------
Self& operator--() {
this->nt = (*this->nt).prev();
this->nt = typename It::Iterator((*this->nt).prev());
return *this;
}
Self operator--(int) {