Fix ALTIUM_RULE_TOKEN qa test failure

This commit is contained in:
Roberto Fernandez Bautista 2021-06-23 22:42:53 +01:00 committed by Thomas Pointhuber
parent b611da161e
commit b532ecec52
1 changed files with 6 additions and 1 deletions

View File

@ -126,9 +126,14 @@ private:
{
if( m_it != m_expr.end() )
{
m_it++;
m_pos++;
if( m_it != m_expr.end() )
return *( m_it );
}
return *( ++m_it );
return wxUniChar();
}
size_t m_pos;