Fixed join_view formatter for wchar_t

This commit is contained in:
Cristi 2021-06-04 02:06:25 +03:00
parent e27b1ce50c
commit 6aac972d25

View File

@ -2535,7 +2535,7 @@ struct formatter<join_view<It, Sentinel, Char>, Char> {
}
using formatter_type =
conditional_t<is_formattable<value_type>::value,
conditional_t<is_formattable<value_type, Char>::value,
formatter<remove_cvref_t<decltype(map(
std::declval<const value_type&>()))>,
Char>,