diff --git a/fmt/format.h b/fmt/format.h index 4b8ba4e3..038bfd94 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -3924,12 +3924,12 @@ void format_arg(fmt::BasicFormatter &f, if (it != e.last) { const Char* save = format_str; - f.format(format_str, internal::MakeArg>(*it++)); + f.format(format_str, internal::MakeArg >(*it++)); while (it != e.last) { f.writer().write(e.sep); format_str = save; - f.format(format_str, internal::MakeArg>(*it++)); + f.format(format_str, internal::MakeArg >(*it++)); } } format_str = end + 1;