File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 552
552
: integral_constant<size_t, 2> {};
553
553
template<class I, class S, ranges::subrange_kind K>
554
554
struct tuple_element<0, ranges::subrange<I, S, K>> { // freestanding
555
- using type = I; // freestanding
555
+ using type = I;
556
556
};
557
557
template<class I, class S, ranges::subrange_kind K>
558
558
struct tuple_element<1, ranges::subrange<I, S, K>> { // freestanding
559
- using type = S; // freestanding
559
+ using type = S;
560
560
};
561
561
template<class I, class S, ranges::subrange_kind K>
562
562
struct tuple_element<0, const ranges::subrange<I, S, K>> { // freestanding
563
- using type = I; // freestanding
563
+ using type = I;
564
564
};
565
565
template<class I, class S, ranges::subrange_kind K>
566
566
struct tuple_element<1, const ranges::subrange<I, S, K>> { // freestanding
567
- using type = S; // freestanding
567
+ using type = S;
568
568
};
569
569
570
570
struct from_range_t { explicit from_range_t() = default; }; // freestanding
You can’t perform that action at this time.
0 commit comments