mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-25 13:19:59 -04:00
+ small fix
This commit is contained in:
parent
f8aab0076a
commit
faa6df721e
@ -67,8 +67,8 @@ namespace zim
|
||||
const_iterator operator++(int)
|
||||
{
|
||||
const_iterator it = *this;
|
||||
++it;
|
||||
return *this;
|
||||
operator++();
|
||||
return it;
|
||||
}
|
||||
|
||||
const_iterator& operator--()
|
||||
@ -78,11 +78,11 @@ namespace zim
|
||||
return *this;
|
||||
}
|
||||
|
||||
const_iterator& operator--(int)
|
||||
const_iterator operator--(int)
|
||||
{
|
||||
const_iterator it = *this;
|
||||
--it;
|
||||
return *this;
|
||||
operator--();
|
||||
return it;
|
||||
}
|
||||
|
||||
const Article& operator*() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user