Skip to content

Commit d988112

Browse files
committed
[ranges.syn] Make get overloads freestanding
These were moved to the synopsis after the P1642 changes to mark nearly everything in the synopsis freestanding, so they were not marked.
1 parent 547987d commit d988112

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/ranges.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@
140140

141141
template<size_t N, class I, class S, subrange_kind K>
142142
requires ((N == 0 && @\libconcept{copyable}@<I>) || N == 1)
143-
constexpr auto get(const subrange<I, S, K>& r);
143+
constexpr auto get(const subrange<I, S, K>& r); // freestanding
144144

145145
template<size_t N, class I, class S, subrange_kind K>
146146
requires (N < 2)
147-
constexpr auto get(subrange<I, S, K>&& r);
147+
constexpr auto get(subrange<I, S, K>&& r); // freestanding
148148
}
149149

150150
namespace std {

0 commit comments

Comments
 (0)