From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id DBCA23857C7C; Sun, 16 Oct 2022 00:17:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DBCA23857C7C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1665879427; bh=q6v4XDp6nUBL248JZN6YUnfXRVKRLi7fk9a4J1Bkt48=; h=From:To:Subject:Date:From; b=a6C4soZX7YJ/+bzOYx05J9SHPP/xV7j+q5PcIIkDRXiwVgOGEmwdRU12qfiSz5f1s B3ZK1/uhDNSEmZZh53bAayBMjw7z84apvj6bIbSs0P8XMR1Yu6hJ1C4bLVfo+osCTW xAlc3FBKNtiHMp4tIbTomQTu1LYHOIVlmA/YjIqE= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-3315] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 030a08c857204909641b0fdc47ba3066f48de404 X-Git-Newrev: 8f605de98de65262c0d3e81064b5bc708fed8f5c Message-Id: <20221016001707.DBCA23857C7C@sourceware.org> Date: Sun, 16 Oct 2022 00:17:07 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8f605de98de65262c0d3e81064b5bc708fed8f5c commit r13-3315-g8f605de98de65262c0d3e81064b5bc708fed8f5c Author: GCC Administrator Date: Sun Oct 16 00:16:25 2022 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- libstdc++-v3/ChangeLog | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 88e8f3fec27..f791a3c954e 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221015 +20221016 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8166bc909b6..9ff3e3fbbb9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,34 @@ +2022-10-15 Jonathan Wakely + + * src/c++11/debug.cc (print_raw): Move inside #if block. + +2022-10-15 Jonathan Wakely + + * include/bits/charconv.h (__to_chars_10_impl): Add constexpr + for C++23. Remove 'static' from array. + * include/std/charconv (__cpp_lib_constexpr_charconv): Define. + (__to_chars, __to_chars_16): Remove 'static' from array, add + constexpr. + (__to_chars_10, __to_chars_8, __to_chars_2, __to_chars_i) + (to_chars, __raise_and_add, __from_chars_pow2_base) + (__from_chars_alnum, from_chars): Add constexpr. + (__from_chars_alnum_to_val): Avoid local static during constant + evaluation. Add constexpr. + * include/std/version (__cpp_lib_constexpr_charconv): Define. + * testsuite/20_util/from_chars/constexpr.cc: New test. + * testsuite/20_util/to_chars/constexpr.cc: New test. + * testsuite/20_util/to_chars/version.cc: New test. + +2022-10-15 Jonathan Wakely + + * include/bits/stl_map.h (map::insert(Pair&&)): Use + remove_const_t on argument to __is_pair. + * include/bits/stl_pair.h (__is_pair>): Remove + partial specialization. + * include/bits/uses_allocator_args.h (_Std_pair): Use + remove_cv_t as per LWG 3677. + * testsuite/20_util/uses_allocator/lwg3677.cc: New test. + 2022-10-14 Jonathan Wakely * libsupc++/eh_alloc.cc [USE_POOL]: New macro.