diff --git a/include/fmt/core.h b/include/fmt/core.h index 54927c06..cc168361 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -2781,7 +2781,7 @@ FMT_API auto vformat(string_view fmt, format_args args) -> std::string; */ template FMT_INLINE auto format(format_string fmt, T&&... args) -> std::string { - return vformat(fmt, make_format_args(args...)); + return vformat(fmt, fmt::make_format_args(args...)); } /** Formats a string and writes the output to ``out``. */