From 5d8556a5e9a3507bc1195a44072f575eab306bec Mon Sep 17 00:00:00 2001 From: Soumik15630m Date: Fri, 30 Jan 2026 09:11:17 +0530 Subject: [PATCH] FMT: Comments updated --- include/fmt/ranges.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/include/fmt/ranges.h b/include/fmt/ranges.h index 733e0144..c674594c 100644 --- a/include/fmt/ranges.h +++ b/include/fmt/ranges.h @@ -347,11 +347,6 @@ template struct is_range { detail::is_range_::value && !detail::has_to_string_view::value; }; -/** - * returns "true" if "T" is a container adaptor (like "std::stack") - * that should be formatted by iterating over the underlying container. - * */ - namespace detail { template @@ -769,6 +764,12 @@ template struct all { auto end() const -> typename Container::const_iterator { return c.end(); } }; } // namespace detail + +/** + * returns "true" if "T" is a container adaptor (like "std::stack") + * that should be formatted by iterating over the underlying container. + * */ + FMT_EXPORT template struct is_container_adaptor : detail::is_container_adaptor_like {};