diff --git a/include/fmt/format.h b/include/fmt/format.h index 64ada7a3..cc75f8eb 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3608,8 +3608,8 @@ inline format_to_n_result vformat_to_n( template inline format_to_n_result format_to_n( OutputIt out, std::size_t n, string_view format_str, const Args &... args) { - return vformat_to_n(out, n, format_str, - make_format_to_n_args(args...)); + return vformat_to_n( + out, n, format_str, make_format_to_n_args(args...)); } template inline format_to_n_result format_to_n(