[libc++] Replace _LIBCPP_HAS_NO_CONCEPTS with _LIBCPP_STD_VER > 17. NFCI.All supported compilers that support C++20 now support concepts. So, remove`_LIB_LIBCPP_HAS_NO_CONCEPTS` in favor of `_LIBC
[libc++] Replace _LIBCPP_HAS_NO_CONCEPTS with _LIBCPP_STD_VER > 17. NFCI.All supported compilers that support C++20 now support concepts. So, remove`_LIB_LIBCPP_HAS_NO_CONCEPTS` in favor of `_LIBCPP_STD_VER > 17`. Similarly inthe tests, remove `// UNSUPPORTED: libcpp-no-concepts`.Differential Revision: https://reviews.llvm.org/D121528
show more ...
[libc++] Remove Lit annotations for unsupported GCC versions from the test suiteSince we officially don't support several older compilers now, we candrop a lot of the markup in the test suite. Thi
[libc++] Remove Lit annotations for unsupported GCC versions from the test suiteSince we officially don't support several older compilers now, we candrop a lot of the markup in the test suite. This helps keep the testsuite simple and makes sure that UNSUPPORTED annotations don't rot.This is the first patch of a series that will remove annotations forcompilers that are now unsupported.Differential Revision: https://reviews.llvm.org/D107787
[libc++] Remove random [[nodiscard]] in the test suite
[libc++] Add all indirect callable concepts and projectedDifferential Revision: https://reviews.llvm.org/D101277
[libcxx] Reenable ranges for clang-clThis reverts a224bf8ec423b42eea251407e7a6cc8398a5edf4 and fixes theunderlying issue.The underlying issue is simply that MSVC headers contains a definelike "
[libcxx] Reenable ranges for clang-clThis reverts a224bf8ec423b42eea251407e7a6cc8398a5edf4 and fixes theunderlying issue.The underlying issue is simply that MSVC headers contains a definelike "#define __in", where __in is one macro in the MSVC SourceCode Annotation Language, defined in sal.hJust use a different variable name than "__in"__indirectly_readable_impl, and add "__in" to nasty_macros.h justlike the existing __out. (Also adding a couple more potentiallyconflicting ones.)Differential Revision: https://reviews.llvm.org/D101613
[libcxx] disables ranges for clang-clclang-cl doesn't properly handle concepts right now and is failing CI.Differential Revision: https://reviews.llvm.org/D101205
[libc++] Re-apply `std::indirectly_readable` and `std::indirectly_writable`That was originally committed in 04733181b513 and then reverted ina9f11cc0d965 because it broke several people.The prob
[libc++] Re-apply `std::indirectly_readable` and `std::indirectly_writable`That was originally committed in 04733181b513 and then reverted ina9f11cc0d965 because it broke several people.The problem was a missing include of __iterator/concepts.h, which has nowbeen fixed.Differential Revision: https://reviews.llvm.org/D100073
Revert "[libcxx][iterator] adds `std::indirectly_readable` and `std::indirectly_writable`"This reverts commit 04733181b5136e2b3df2b37c6bdd9e25f8afecd0 which wasfailing for multiple people.
[libcxx][iterator] adds `std::indirectly_readable` and `std::indirectly_writable`Implements parts of: * P0896R4 The One Ranges Proposal`Depends on D99873.Reviewed By: ldionne, #libcDiffer
[libcxx][iterator] adds `std::indirectly_readable` and `std::indirectly_writable`Implements parts of: * P0896R4 The One Ranges Proposal`Depends on D99873.Reviewed By: ldionne, #libcDifferential Revision: https://reviews.llvm.org/D100073