mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-24 16:15:38 +03:00
add postfix increment to ParameterParser iterator
This commit is contained in:
parent
dac5e89e14
commit
346de52633
@ -117,6 +117,7 @@ struct ParametersParser
|
||||
}
|
||||
|
||||
iterator& operator++() { ++m_index; return *this; }
|
||||
iterator operator++(int) { auto copy = *this; ++m_index; return copy; }
|
||||
|
||||
bool operator==(const iterator& other) const
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user