File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 10580
10580
constexpr explicit adjacent_view(V base);
10581
10581
10582
10582
10583
- constexpr V base() const & requires copy_constructible <V> { return @\exposid{base_}@; }
10583
+ constexpr V base() const & requires @\libconcept{ccopy_constructible}@ <V> { return @\exposid{base_}@; }
10584
10584
constexpr V base() && { return std::move(@\exposid{base_}@); }
10585
10585
10586
10586
constexpr auto begin() requires (!@\exposconcept{simple-view}@<V>) {
11224
11224
adjacent_transform_view() = default;
11225
11225
constexpr explicit adjacent_transform_view(V base, F fun);
11226
11226
11227
- constexpr V base() const & requires copy_constructible<@\exposid{InnerView}@> { return @\exposid{inner_}@.base(); }
11227
+ constexpr V base() const & requires @\libconcept{ copy_constructible}@ <@\exposid{InnerView}@> { return @\exposid{inner_}@.base(); }
11228
11228
constexpr V base() && { return std::move(@\exposid{inner_}@).base(); }
11229
11229
11230
11230
constexpr auto begin() {
12723
12723
public:
12724
12724
constexpr explicit slide_view(V base, range_difference_t<V> n);
12725
12725
12726
- constexpr V base() const & requires copy_constructible<V> { return @\exposid{base_}@; }
12726
+ constexpr V base() const & requires @\libconcept{ copy_constructible}@ <V> { return @\exposid{base_}@; }
12727
12727
constexpr V base() && { return std::move(@\exposid{base_}@); }
12728
12728
12729
12729
constexpr auto begin()
You can’t perform that action at this time.
0 commit comments