Commit 986a5a6c authored by Cristi's avatar Cristi Committed by Victor Zverovich

Fixed join_view formatter for wchar_t

parent 7c8b35ff
...@@ -2572,7 +2572,7 @@ struct formatter<join_view<It, Sentinel, Char>, Char> { ...@@ -2572,7 +2572,7 @@ struct formatter<join_view<It, Sentinel, Char>, Char> {
} }
using formatter_type = using formatter_type =
conditional_t<is_formattable<value_type>::value, conditional_t<is_formattable<value_type, Char>::value,
formatter<remove_cvref_t<decltype(map( formatter<remove_cvref_t<decltype(map(
std::declval<const value_type&>()))>, std::declval<const value_type&>()))>,
Char>, Char>,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment