[libcxx-commits] [libcxx] Polishing documentation of libc++ (PR #132962)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 26 00:19:05 PDT 2025
================
@@ -237,22 +236,22 @@ C++26 Specific Configuration Macros
Libc++ Extensions
=================
-This section documents various extensions provided by libc++, how they're
-provided, and any information regarding how to use them.
+This section documents various extensions to the C++ standard library
+provided by libc++ and any information regarding how to use them.
Extended integral type support
------------------------------
-Several platforms support types that are not specified in the Standard, such as
-the 128-bit integral types ``__int128_t`` and ``__uint128_t``. As an extension,
-libc++ does a best-effort attempt to support these types like other integral
-types, by supporting them notably in:
+Several platforms support types that are not specified in the C++ standard,
+such as the 128-bit integral types ``__int128_t`` and ``__uint128_t``.
+As an extension, libc++ does a best-effort attempt to support these types like
+other integral types, by supporting them notably in:
* ``<bits>``
* ``<charconv>``
* ``<functional>``
-* ``<type_traits>``
* ``<format>``
+* ``<type_traits>``
* ``<random>``
----------------
philnik777 wrote:
```suggestion
* ``<random>``
* ``<type_traits>``
```
assuming you wanted to order the list lexicographically.
https://github.com/llvm/llvm-project/pull/132962
More information about the libcxx-commits
mailing list