File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -17147,11 +17147,27 @@
17147
17147
\end{codeblock}
17148
17148
\begin{note}
17149
17149
Specializations such as \tcode{formatter<wchar_t, char>}
17150
- and \tcode{formatter<const char*, wchar_t>}
17151
17150
that would require implicit
17152
17151
multibyte / wide string or character conversion are disabled.
17153
17152
\end{note}
17154
17153
17154
+ \pnum
17155
+ The header \libheaderdef{format} provides
17156
+ the following disabled specializations:
17157
+ \begin{itemize}
17158
+ \item
17159
+ The string type specializations
17160
+ \begin{codeblock}
17161
+ template<> struct formatter<char*, wchar_t>;
17162
+ template<> struct formatter<const char*, wchar_t>;
17163
+ template<size_t N> struct formatter<char[N], wchar_t>;
17164
+ template<class traits, class Allocator>
17165
+ struct formatter<basic_string<char, traits, Allocator>, wchar_t>;
17166
+ template<class traits>
17167
+ struct formatter<basic_string_view<char, traits>, wchar_t>;
17168
+ \end{codeblock}
17169
+ \end{itemize}
17170
+
17155
17171
\pnum
17156
17172
For any types \tcode{T} and \tcode{charT} for which
17157
17173
neither the library nor the user provides
You can’t perform that action at this time.
0 commit comments