Skip to content

Commit 0f34c04

Browse files
committed
Enable ANDROID
1 parent 03706dd commit 0f34c04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libcxx/include/__config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ typedef __char32_t char32_t;
12171217

12181218
// TODO(LLVM 22): Remove this macro once LLVM19 support ends.
12191219
# if __has_builtin(__reference_constructs_from_temporary) || \
1220-
(defined(_LIBCPP_CLANG_VER) && (_LIBCPP_CLANG_VER == 1901))
1220+
(defined(_LIBCPP_CLANG_VER) && (_LIBCPP_CLANG_VER >= 1900))
12211221
# define _LIBCPP_HAS_REFERENCE_CONSTRUCTS_FROM_TEMPORARY 1
12221222
# else
12231223
# define _LIBCPP_HAS_REFERENCE_CONSTRUCTS_FROM_TEMPORARY 0

libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/reference_constructs_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 && clang-19.0, apple-clang-15, apple-clang-16
12+
// UNSUPPORTED: apple-clang-15, apple-clang-16
1313

1414
// <type_traits>
1515

0 commit comments

Comments
 (0)