File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
libcxx/test/std/ranges/range.adaptors/range.join/range.join.sentinel Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ constexpr bool test() {
71
71
BufferView<forward_iterator<const Inner*>, sentinel_wrapper<forward_iterator<const Inner*>>,
72
72
bidirectional_iterator<Inner*>, sentinel_wrapper<bidirectional_iterator<Inner*>>>;
73
73
using JoinView = std::ranges::join_view<ConstInconvertibleOuter>;
74
- using sentinel = std::ranges::sentinel_t <JoinView>;
75
- using const_sentinel = std::ranges::sentinel_t <const JoinView>;
76
- static_assert (!std::constructible_from<sentinel, const_sentinel >);
77
- static_assert (!std::constructible_from<const_sentinel, sentinel >);
74
+ using sentinel_t = std::ranges::sentinel_t <JoinView>;
75
+ using const_sentinel_t = std::ranges::sentinel_t <const JoinView>;
76
+ static_assert (!std::constructible_from<sentinel_t , const_sentinel_t >);
77
+ static_assert (!std::constructible_from<const_sentinel_t , sentinel_t >);
78
78
}
79
79
return true ;
80
80
}
You can’t perform that action at this time.
0 commit comments