Skip to content

Commit bf30432

Browse files
frederick-vs-jatkoeppe
authored andcommitted
[ranges.syn] Remove redundant freestanding mark for members
1 parent 77d1b66 commit bf30432

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/ranges.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -552,19 +552,19 @@
552552
: integral_constant<size_t, 2> {};
553553
template<class I, class S, ranges::subrange_kind K>
554554
struct tuple_element<0, ranges::subrange<I, S, K>> { // freestanding
555-
using type = I; // freestanding
555+
using type = I;
556556
};
557557
template<class I, class S, ranges::subrange_kind K>
558558
struct tuple_element<1, ranges::subrange<I, S, K>> { // freestanding
559-
using type = S; // freestanding
559+
using type = S;
560560
};
561561
template<class I, class S, ranges::subrange_kind K>
562562
struct tuple_element<0, const ranges::subrange<I, S, K>> { // freestanding
563-
using type = I; // freestanding
563+
using type = I;
564564
};
565565
template<class I, class S, ranges::subrange_kind K>
566566
struct tuple_element<1, const ranges::subrange<I, S, K>> { // freestanding
567-
using type = S; // freestanding
567+
using type = S;
568568
};
569569

570570
struct from_range_t { explicit from_range_t() = default; }; // freestanding

0 commit comments

Comments
 (0)