From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1888) id DDDF93858014; Fri, 11 Feb 2022 14:04:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DDDF93858014 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Patrick Palka To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r11-9556] libstdc++: Sync __cpp_lib_ranges macro defined in ranges_cmp.h X-Act-Checkin: gcc X-Git-Author: Patrick Palka X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: 92d612cccc1eeccf858cecd29ce4b7e734df7ae9 X-Git-Newrev: fdc75c820f0f6fa458f0325c2c222ad5e7a7d3ad Message-Id: <20220211140407.DDDF93858014@sourceware.org> Date: Fri, 11 Feb 2022 14:04:07 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Feb 2022 14:04:08 -0000 https://gcc.gnu.org/g:fdc75c820f0f6fa458f0325c2c222ad5e7a7d3ad commit r11-9556-gfdc75c820f0f6fa458f0325c2c222ad5e7a7d3ad Author: Patrick Palka Date: Mon Jun 21 09:45:31 2021 -0400 libstdc++: Sync __cpp_lib_ranges macro defined in ranges_cmp.h r12-1606 bumped the value of __cpp_lib_ranges defined in , but this macro is also defined in , so it needs to be updated there as well. PR libstdc++/103904 libstdc++-v3/ChangeLog: * include/bits/ranges_cmp.h (__cpp_lib_ranges): Adjust value. (cherry picked from commit 12bdd39755a25d237b7776153cbe03e171396fc5) Diff: --- libstdc++-v3/include/bits/ranges_cmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/bits/ranges_cmp.h b/libstdc++-v3/include/bits/ranges_cmp.h index f859a33b2c1..1d7da30dddf 100644 --- a/libstdc++-v3/include/bits/ranges_cmp.h +++ b/libstdc++-v3/include/bits/ranges_cmp.h @@ -57,7 +57,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #ifdef __cpp_lib_concepts // Define this here, included by all the headers that need to define it. -#define __cpp_lib_ranges 201911L +#define __cpp_lib_ranges 202106L namespace ranges {