From af9bb5c0754466e4bc3337e3917e907dad89eff9 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 3 Mar 2026 08:22:10 -0800 Subject: [PATCH] Mark detail::named_arg as deprecated --- include/fmt/base.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fmt/base.h b/include/fmt/base.h index 9fba386a..d044f1cf 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -1030,6 +1030,7 @@ struct is_view : std::false_type {}; template struct is_view> : std::is_base_of {}; +// DEPRECATED! named_arg will be moved to the fmt namespace. template struct named_arg; template struct is_named_arg : std::false_type {}; template struct is_static_named_arg : std::false_type {};