summaryrefslogtreecommitdiff
path: root/libcxx/docs
diff options
context:
space:
mode:
authorNikolas Klauser <nikolasklauser@berlin.de>2023-03-09 01:14:03 +0100
committerNikolas Klauser <nikolasklauser@berlin.de>2023-03-22 20:17:26 +0100
commite655d8a54880cf550567dda0e9a1a33f6ee98df5 (patch)
tree82e89c708ba2dcd08e087ff6f4c915f18cdebd26 /libcxx/docs
parent6afcc54ac7d68fa2b28f0e7cbf9dc1d4ac7fb95e (diff)
downloadllvm-e655d8a54880cf550567dda0e9a1a33f6ee98df5.tar.gz
[libc++] Granularize __mutex_base
This also updates the moved code to the current style. (i.e. `_VSTD` -> `std`, `_LIBCPP_INLINE_VISIBILITY` -> `_LIBCPP_HIDE_FROM_ABI`, clang-format). Reviewed By: Mordante, #libc, EricWF Spies: arichardson, libcxx-commits, mikhail.ramalho Differential Revision: https://reviews.llvm.org/D146228
Diffstat (limited to 'libcxx/docs')
-rw-r--r--libcxx/docs/ReleaseNotes.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxx/docs/ReleaseNotes.rst b/libcxx/docs/ReleaseNotes.rst
index aa14e6bfcd97..8083ba337fc1 100644
--- a/libcxx/docs/ReleaseNotes.rst
+++ b/libcxx/docs/ReleaseNotes.rst
@@ -62,7 +62,8 @@ Deprecations and Removals
includes are removed based on the language version used. Incidental transitive
inclusions of the following headers have been removed:
- - C++2b: ``atomic``, ``bit``, ``cstring``, ``type_traits``
+ - C++2b: ``atomic``, ``bit``, ``cstdint``, ``cstdlib``, ``cstring``, ``initializer_list``, ``new``, ``stdexcept``,
+ ``type_traits``, ``typeinfo``
- The headers ``<experimental/algorithm>`` and ``<experimental/functional>`` have been removed, since all the contents
have been implemented in namespace ``std`` for at least two releases.