mirror of https://github.com/libAthena/athena.git
Add increment operator
This commit is contained in:
parent
be6361e130
commit
a6cfc0aed9
|
@ -242,6 +242,10 @@ public:
|
|||
}
|
||||
return *this;
|
||||
}
|
||||
UTF8Iterator& operator++()
|
||||
{
|
||||
return this->operator+=(1);
|
||||
}
|
||||
UTF8Iterator operator+(size_t v) const
|
||||
{
|
||||
UTF8Iterator ret(m_it);
|
||||
|
|
Loading…
Reference in New Issue