From 9d7f2eac6fe9a05ff14b5910b4f5ddbf06604412 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 15 Sep 2022 15:38:58 +0100 Subject: [PATCH] [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. --- source/ranges.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/ranges.tex b/source/ranges.tex index 9495ac5498..3c3af67a5b 100644 --- a/source/ranges.tex +++ b/source/ranges.tex @@ -140,15 +140,15 @@ template requires ((N == 0 && @\libconcept{copyable}@) || N == 1) - constexpr auto get(const subrange& r); + constexpr auto get(const subrange& r); // freestanding template requires (N < 2) - constexpr auto get(subrange&& r); + constexpr auto get(subrange&& r); // freestanding } namespace std { - using ranges::get; + using ranges::get; // freestanding } namespace std::ranges {