From 0378d171f95319bccc2f6e01307d1417bff1dd5e Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 2 Jan 2024 12:46:09 -0800 Subject: [PATCH] Replace remove_cvref_t with remove_const_t --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 19beae14..338e534b 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1856,7 +1856,7 @@ class format_arg_store // Arguments are taken by lvalue references to avoid some lifetime issues. template constexpr auto make_format_args(T&... args) - -> format_arg_store...> { + -> format_arg_store...> { return {args...}; }