Skip to content

Commit b105f26

Browse files
committed
[libc++][ranges] Fix the CI.
1 parent 1cbaf68 commit b105f26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/std/algorithms/robust_against_proxy_iterators_lifetime_bugs.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ class Input {
557557
public:
558558
template <size_t N2>
559559
TEST_CONSTEXPR_CXX20 Input(std::array<T, N2> from) {
560-
static_assert(N2 <= N);
560+
static_assert(N2 <= N, "");
561561

562562
std::copy(from.begin(), from.end(), begin());
563563
size_ = N2;

0 commit comments

Comments
 (0)