diff --git a/include/fmt/format.h b/include/fmt/format.h index 65101326..18175bd6 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2148,7 +2148,8 @@ FMT_CONSTEXPR void parse_format_string( // 2.5x faster than the naive one-pass implementation on long format strings. auto p = find(begin, end, '{'); if (p == end) { - write(begin, end); + if (begin != end) + write(begin, end); return; } write(begin, p);