[libcxx-commits] [libcxx] [libc++] Make list constexpr as part of P3372R3 (PR #129799)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jun 10 08:23:14 PDT 2025
================
@@ -31,8 +32,19 @@ int main(int, char**) {
});
test_sequence_append_range_move_only<std::list>();
- test_append_range_exception_safety_throwing_copy<std::list>();
- test_append_range_exception_safety_throwing_allocator<std::list, int>();
+ if (!std::is_constant_evaluated()) {
----------------
ldionne wrote:
Any reason for not using `TEST_IS_CONSTANT_EVALUATED` here like you do in other places?
https://github.com/llvm/llvm-project/pull/129799
More information about the libcxx-commits
mailing list