@@ -21001,33 +21001,30 @@
21001
21001
\begin{itemize}
21002
21002
\item
21003
21003
if \tcode{T} is \tcode{bool} or \tcode{char_type},
21004
- initializes \tcode{value} with \tcode{v}; otherwise,
21004
+ initializes \tcode{value} with \tcode{v};
21005
21005
\item
21006
- if \tcode{T} is \tcode{char} and \tcode{char_type} is
21006
+ otherwise, if \tcode{T} is \tcode{char} and \tcode{char_type} is
21007
21007
\tcode{wchar_t}, initializes \tcode{value} with
21008
- \tcode{static_cast<wchar_t>(v)}; otherwise,
21008
+ \tcode{static_cast<wchar_t>(v)};
21009
21009
\item
21010
- if \tcode{T} is a signed integer type\iref{basic.fundamental}
21010
+ otherwise, if \tcode{T} is a signed integer type\iref{basic.fundamental}
21011
21011
and \tcode{sizeof(T) <= sizeof(int)},
21012
21012
initializes \tcode{value} with \tcode{static_cast<int>(v)};
21013
- otherwise,
21014
21013
\item
21015
- if \tcode{T} is an unsigned integer type and
21014
+ otherwise, if \tcode{T} is an unsigned integer type and
21016
21015
\tcode{sizeof(T) <= sizeof(unsigned int)}, initializes
21017
21016
\tcode{value} with \tcode{static_cast<unsigned int>(v)};
21018
- otherwise,
21019
21017
\item
21020
- if \tcode{T} is a signed integer type and
21018
+ otherwise, if \tcode{T} is a signed integer type and
21021
21019
\tcode{sizeof(T) <= sizeof(long long int)}, initializes
21022
21020
\tcode{value} with \tcode{static_cast<long long int>(v)};
21023
- otherwise,
21024
21021
\item
21025
- if \tcode{T} is an unsigned integer type and
21022
+ otherwise, if \tcode{T} is an unsigned integer type and
21026
21023
\tcode{sizeof(T) <= sizeof(unsigned long long int)}, initializes
21027
21024
\tcode{value} with
21028
- \tcode{static_cast<unsigned long long int>(v)}; otherwise,
21025
+ \tcode{static_cast<unsigned long long int>(v)};
21029
21026
\item
21030
- initializes \tcode{value} with \tcode{handle(v)}.
21027
+ otherwise, initializes \tcode{value} with \tcode{handle(v)}.
21031
21028
\end{itemize}
21032
21029
\end{itemdescr}
21033
21030
0 commit comments