File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed
libcxx/test/std/ranges/range.adaptors/range.common.view Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ constexpr bool test() {
5454 {
5555 NonSimpleNonCommonView view{buf, buf + 8 };
5656 std::ranges::common_view<NonSimpleNonCommonView> common (view);
57- static_assert (!std::ranges::__simple_view<NonSimpleNonCommonView>);
5857 static_assert (!std::is_same_v<decltype (common.begin ()), decltype (std::as_const (common).begin ())>);
5958 }
6059
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ constexpr bool test() {
4242 {
4343 NonSimpleNonCommonView view{buf, buf + 8 };
4444 std::ranges::common_view<NonSimpleNonCommonView> common (view);
45- static_assert (!std::ranges::__simple_view<NonSimpleNonCommonView>);
4645 static_assert (!std::is_same_v<decltype (common.end ()), decltype (std::as_const (common).end ())>);
4746 }
4847
You can’t perform that action at this time.
0 commit comments