diff --git a/include/fmt/core.h b/include/fmt/core.h index 46723d59..ba28b5f4 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1839,9 +1839,9 @@ class format_arg_store \endrst */ template -constexpr auto make_format_args(T&&... args) +constexpr auto make_format_args(T&... args) -> format_arg_store...> { - return {FMT_FORWARD(args)...}; + return {args...}; } /**