Skip to content

Commit 1383e97

Browse files
jwakelytkoeppe
authored andcommitted
[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 f68d642 commit 1383e97

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
@@ -140,15 +140,15 @@
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 {
151-
using ranges::get;
151+
using ranges::get; // freestanding
152152
}
153153

154154
namespace std::ranges {

0 commit comments

Comments
 (0)