Util: Fix parsing index in automatic mode
This commit is contained in:
@@ -113,7 +113,7 @@ std::optional<size_t> Parser::consumeIndex()
|
||||
|
||||
switch (m_mode) {
|
||||
case ArgumentIndexingMode::Automatic: {
|
||||
VERIFY(consumeSpecific('}') || consumeSpecific(':'), "expecting '}' or ':', not '%c'", peek());
|
||||
VERIFY(consumeSpecific(':') || peek() == '}', "expecting ':' or '}', not '%c'", peek());
|
||||
return {};
|
||||
}
|
||||
case ArgumentIndexingMode::Manual: {
|
||||
|
||||
Reference in New Issue
Block a user