Skip to content

[conv.rank] Change "size" to "width" in conversion rank relation #3675

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/basic.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4651,7 +4651,7 @@
\indextext{integral type!implementation-defined \tcode{sizeof}}%
\begin{note}
Plain \tcode{int}s are intended to have
the natural size suggested by the architecture of the execution environment;
the natural width suggested by the architecture of the execution environment;
the other signed integer types are provided to meet special needs.
\end{note}

Expand Down Expand Up @@ -5199,7 +5199,7 @@
the same representation.

\item The rank of a signed integer type shall be greater than the rank
of any signed integer type with a smaller size.
of any signed integer type with a smaller width.

\item The rank of \tcode{long long int} shall be greater
than the rank of \tcode{long int}, which shall be greater than
Expand All @@ -5211,7 +5211,7 @@
corresponding signed integer type.

\item The rank of any standard integer type shall be greater than the
rank of any extended integer type with the same size.
rank of any extended integer type with the same width.

\item The rank of \tcode{char} shall equal the rank of \tcode{signed char}
and \tcode{unsigned char}.
Expand All @@ -5228,7 +5228,7 @@
types\iref{basic.fundamental}.

\item The rank of any extended signed integer type relative to another
extended signed integer type with the same size is \impldef{rank of extended signed
extended signed integer type with the same width is \impldef{rank of extended signed
integer type}, but still subject to the other rules for determining the integer
conversion rank.

Expand Down