Don't export fmt::conjunction

This commit is contained in:
Amber Ehrlich 2025-06-21 14:14:48 -04:00
parent b31f0c8aa7
commit 039f375145

View File

@ -362,7 +362,6 @@ struct is_formattable_delayed
: is_formattable<uncvref_type<maybe_const_range<R>>, Char> {};
} // namespace detail
FMT_EXPORT
template <typename...> struct conjunction : std::true_type {};
template <typename P> struct conjunction<P> : P {};
template <typename P1, typename... Pn>