Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/ranges.tex
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@

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

template<size_t N, class I, class S, subrange_kind K>
requires (N < 2)
constexpr auto get(subrange<I, S, K>&& r);
constexpr auto get(subrange<I, S, K>&& r); // freestanding
}

namespace std {
using ranges::get;
using ranges::get; // freestanding
}

namespace std::ranges {
Expand Down