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