Skip to content

Commit e0ea8f0

Browse files
jensmaurerzygoloid
authored andcommitted
[format.arg] Move 'otherwise' to the start of the bullets.
1 parent 6816060 commit e0ea8f0

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

source/utilities.tex

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21001,33 +21001,30 @@
2100121001
\begin{itemize}
2100221002
\item
2100321003
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};
2100521005
\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
2100721007
\tcode{wchar_t}, initializes \tcode{value} with
21008-
\tcode{static_cast<wchar_t>(v)}; otherwise,
21008+
\tcode{static_cast<wchar_t>(v)};
2100921009
\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}
2101121011
and \tcode{sizeof(T) <= sizeof(int)},
2101221012
initializes \tcode{value} with \tcode{static_cast<int>(v)};
21013-
otherwise,
2101421013
\item
21015-
if \tcode{T} is an unsigned integer type and
21014+
otherwise, if \tcode{T} is an unsigned integer type and
2101621015
\tcode{sizeof(T) <= sizeof(unsigned int)}, initializes
2101721016
\tcode{value} with \tcode{static_cast<unsigned int>(v)};
21018-
otherwise,
2101921017
\item
21020-
if \tcode{T} is a signed integer type and
21018+
otherwise, if \tcode{T} is a signed integer type and
2102121019
\tcode{sizeof(T) <= sizeof(long long int)}, initializes
2102221020
\tcode{value} with \tcode{static_cast<long long int>(v)};
21023-
otherwise,
2102421021
\item
21025-
if \tcode{T} is an unsigned integer type and
21022+
otherwise, if \tcode{T} is an unsigned integer type and
2102621023
\tcode{sizeof(T) <= sizeof(unsigned long long int)}, initializes
2102721024
\tcode{value} with
21028-
\tcode{static_cast<unsigned long long int>(v)}; otherwise,
21025+
\tcode{static_cast<unsigned long long int>(v)};
2102921026
\item
21030-
initializes \tcode{value} with \tcode{handle(v)}.
21027+
otherwise, initializes \tcode{value} with \tcode{handle(v)}.
2103121028
\end{itemize}
2103221029
\end{itemdescr}
2103321030

0 commit comments

Comments
 (0)