Skip to content

Commit

Permalink
Update libcxx/set
Browse files Browse the repository at this point in the history
  • Loading branch information
morzhovets committed Nov 21, 2023
1 parent 7479ba0 commit 0134218
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ static_assert(std::ranges::input_range<range>);
static_assert(!std::ranges::view<range>);
static_assert(std::ranges::sized_range<range>);
static_assert(!std::ranges::borrowed_range<range>);
#if !defined(TEST_GCC)
static_assert(std::ranges::viewable_range<range>);
#endif

static_assert(std::same_as<std::ranges::iterator_t<range const>, range::const_iterator>);
static_assert(std::ranges::bidirectional_range<range const>);
Expand All @@ -34,7 +36,9 @@ static_assert(std::ranges::input_range<range const>);
static_assert(!std::ranges::view<range const>);
static_assert(std::ranges::sized_range<range const>);
static_assert(!std::ranges::borrowed_range<range const>);
#if !defined(TEST_GCC)
static_assert(!std::ranges::viewable_range<range const>);
#endif

void main()
{
Expand Down

0 comments on commit 0134218

Please sign in to comment.