Skip to content
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

Cleanup C++ references in the language spec #215

Merged
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions specs/language/basic.tex
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@

\p The signed integer types and unsigned integer types are collectively called
\textit{integer types}. Integer types inherit the object representation of
integers defined in \glsdesc{isoC23}\footnote{C23 adopts two's compliment as the
integers defined in \gls{isoC23}\footnote{C23 adopts two's complement as the
object representation for integer types.}. Integer types shall satisfy the
constraints defined in \glsdesc{isoCPP}, section \textbf{basic.fundamental}.
constraints defined in \gls{isoCPP}, section \textbf{basic.fundamental}.

\p There are three \textit{standard floating point types}: \texttt{half},
\texttt{float}, and \texttt{double}. The \texttt{float} type is a 32-bit
Expand Down
12 changes: 6 additions & 6 deletions specs/language/glossary.tex
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@

\newglossaryentry{isoC}
{
name={ISO/IEC 9899:2018},
description={ISO C standard}
name={ISO C standard (2011)},
description={ISO/IEC 9899:2011: Standard for Programming Language C.}
}

\newglossaryentry{isoC23}
{
name={ISO/IEC 9899:2023},
description={ISO C23 standard}
name={ISO C standard (2023)},
description={ISO/IEC 9899:2023: Standard for Programming Language C.}
}

\newglossaryentry{isoCPP}
{
name={ISO/IEC 14882:2020},
description={ISO C++ standard}
name={ISO C++ standard (2011)},
description={ISO/IEC 14882:2011: Standard for Programming Language C++.}
}

\newglossaryentry{IEEE754}
Expand Down
Loading