Skip to content

Commit

Permalink
[libc++][ranges] Fix the CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
var-const committed Jul 27, 2022
1 parent 1cbaf68 commit b105f26
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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;
Expand Down

0 comments on commit b105f26

Please sign in to comment.