diff --git a/src/util/format/parser.cpp b/src/util/format/parser.cpp index 3ea7532..6512433 100644 --- a/src/util/format/parser.cpp +++ b/src/util/format/parser.cpp @@ -113,7 +113,7 @@ std::optional 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: {