[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
[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
[libc++][ranges] iterator.concept.sizedsentinel: sized_sentinel_for and disable_sized_sentinel_for.Based on D100160.Reviewed By: cjdb, ldionne, Quuxplusone, #libc, misccoDifferential Revision:
[libc++][ranges] iterator.concept.sizedsentinel: sized_sentinel_for and disable_sized_sentinel_for.Based on D100160.Reviewed By: cjdb, ldionne, Quuxplusone, #libc, misccoDifferential Revision: https://reviews.llvm.org/D100587
[libcxx][iterator] adds `std::input_or_output_iterator` and `std::sentinel_for`Implements parts of: * P0896R4 The One Ranges Proposal`Depends on D100080Differential Revision: https://review
[libcxx][iterator] adds `std::input_or_output_iterator` and `std::sentinel_for`Implements parts of: * P0896R4 The One Ranges Proposal`Depends on D100080Differential Revision: https://reviews.llvm.org/D100160