[libc++][ranges] Fix the CI.

This commit is contained in:
Konstantin Varlamov 2022-07-26 19:45:06 -07:00
parent 1cbaf681b0
commit b105f26c8a
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ class Input {
public:
template <size_t N2>
TEST_CONSTEXPR_CXX20 Input(std::array<T, N2> from) {
static_assert(N2 <= N);
static_assert(N2 <= N, "");
std::copy(from.begin(), from.end(), begin());
size_ = N2;