Skip to content

Commit ed992ea

Browse files
committed
FIXUP LWG3848: mark libconcepts
1 parent 173591e commit ed992ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/ranges.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10580,7 +10580,7 @@
1058010580
constexpr explicit adjacent_view(V base);
1058110581

1058210582

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_}@; }
1058410584
constexpr V base() && { return std::move(@\exposid{base_}@); }
1058510585

1058610586
constexpr auto begin() requires (!@\exposconcept{simple-view}@<V>) {
@@ -11224,7 +11224,7 @@
1122411224
adjacent_transform_view() = default;
1122511225
constexpr explicit adjacent_transform_view(V base, F fun);
1122611226

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(); }
1122811228
constexpr V base() && { return std::move(@\exposid{inner_}@).base(); }
1122911229

1123011230
constexpr auto begin() {
@@ -12723,7 +12723,7 @@
1272312723
public:
1272412724
constexpr explicit slide_view(V base, range_difference_t<V> n);
1272512725

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_}@; }
1272712727
constexpr V base() && { return std::move(@\exposid{base_}@); }
1272812728

1272912729
constexpr auto begin()

0 commit comments

Comments
 (0)