Skip to content

Commit 69b6b61

Browse files
committed
Android NDK r29 support + Release Notes
1 parent b9e1bfb commit 69b6b61

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

libcxx/docs/ReleaseNotes/21.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Implemented Papers
4040

4141
- N4258: Cleaning-up noexcept in the Library (`Github <https://github.com/llvm/llvm-project/issues/99937>`__)
4242
- P1361R2: Integration of chrono with text formatting (`Github <https://github.com/llvm/llvm-project/issues/100014>`__)
43+
- P2255R2: A type trait to detect reference binding to temporary (implemented the type traits only) (`Github <https://github.com/llvm/llvm-project/issues/105180>`)
4344

4445
Improvements and New Features
4546
-----------------------------

libcxx/include/__config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ typedef __char32_t char32_t;
12241224
# endif
12251225

12261226
// TODO(LLVM 22): Remove this macro once LLVM19 support ends.
1227-
# if __has_builtin(__reference_converts_from_temporary) || (defined(_LIBCPP_CLANG_VER) && (_LIBCPP_CLANG_VER == 1901))
1227+
# if __has_builtin(__reference_converts_from_temporary) || (defined(_LIBCPP_CLANG_VER) && (_LIBCPP_CLANG_VER >= 1901))
12281228
# define _LIBCPP_HAS_REFERENCE_CONVERTS_FROM_TEMPORARY 1
12291229
# else
12301230
# define _LIBCPP_HAS_REFERENCE_CONVERTS_FROM_TEMPORARY 0

libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/reference_converts_from_temporary.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// REQUIRES: std-at-least-c++23
1010

1111
// These compilers don't support std::reference_converts_from_temporary yet.
12-
// UNSUPPORTED: android, apple-clang-15, apple-clang-16, clang-18
12+
// UNSUPPORTED: android && clang-19.0, apple-clang-15, apple-clang-16, clang-18
1313

1414
// <type_traits>
1515

0 commit comments

Comments
 (0)