Skip to content

Commit 9c498c7

Browse files
Use // REQUIRES: std-at-least-c++23 for some tests
1 parent 930a9cb commit 9c498c7

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

libcxx/test/std/iterators/const.iterators/alias.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// std::const_iterator
1212

libcxx/test/std/iterators/const.iterators/iterator.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// std::basic_const_iterator
1212

libcxx/test/std/ranges/range.adaptors/range.as.const/adaptor.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// std::views::as_const
1212

libcxx/test/std/ranges/range.adaptors/range.as.const/base.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// constexpr V base() const& requires copy_constructible<V> { return base_; }
1212
// constexpr V base() && { return std::move(base_); }

libcxx/test/std/ranges/range.adaptors/range.as.const/begin.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// constexpr auto begin()
1212
// constexpr auto begin() const

libcxx/test/std/ranges/range.adaptors/range.as.const/ctad.compile.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
#include <ranges>
1212
#include <vector>

libcxx/test/std/ranges/range.adaptors/range.as.const/ctor.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// std::ranges::as_const_view::as_const_view(...)
1212

libcxx/test/std/ranges/range.adaptors/range.as.const/enable_borrowed_range.compile.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
#include <ranges>
1212
#include <vector>

libcxx/test/std/ranges/range.adaptors/range.as.const/end.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9+
// REQUIRES: std-at-least-c++23
1010

1111
// constexpr auto end()
1212
// constexpr auto end() const

libcxx/test/std/ranges/range.adaptors/range.as.const/size.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// constexpr auto size()
1010
// constexpr auto size() const
1111

12-
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
12+
// REQUIRES: std-at-least-c++23
1313

1414
#include <cassert>
1515
#include <cstddef>

0 commit comments

Comments
 (0)