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++() { ++m_index; return *this; }
|
||||||
|
iterator operator++(int) { auto copy = *this; ++m_index; return copy; }
|
||||||
|
|
||||||
bool operator==(const iterator& other) const
|
bool operator==(const iterator& other) const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user