From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 71A5E3858D37; Fri, 28 Apr 2023 00:20:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 71A5E3858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682641234; bh=Hq9Jgq0yKvzRZfCJW7pa/HpIqvLHUkskwkxEgCS60fQ=; h=From:To:Subject:Date:From; b=W3u7H5ywdfdaqR2V2Hu5zDhjcUVHxkvAxf8+fTsQPkS1PA3RkqRqG4Ly5K2TcoVpO Ke2HPiQqgNQYm2Qt2PBbJMIUkYgaFEjMhq9hXeMoeVJfyn6T7FWdntL4hAfOwXTn1s 2TunzKrwg9kmoAtUN/uxw2eDxar94Qe/B+rMvl/4= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r11-10667] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: 525f73e0d914b00bb6bd20a754dfd4ba097a5d10 X-Git-Newrev: 5555d549567a2ac64607dc8437c33abed7983d0e Message-Id: <20230428002034.71A5E3858D37@sourceware.org> Date: Fri, 28 Apr 2023 00:20:34 +0000 (GMT) List-Id: https://gcc.gnu.org/g:5555d549567a2ac64607dc8437c33abed7983d0e commit r11-10667-g5555d549567a2ac64607dc8437c33abed7983d0e Author: GCC Administrator Date: Fri Apr 28 00:19:52 2023 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- libstdc++-v3/ChangeLog | 111 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index faac45ae8d2..dd82014ea01 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230427 +20230428 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 46c89801dfa..2b6c1fed779 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,114 @@ +2023-04-27 Jonathan Wakely + + Backported from master: + 2022-09-14 Jonathan Wakely + + * doc/xml/manual/intro.xml: Document LWG 1203. + * doc/html/*: Regenerate. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2022-09-07 Jonathan Wakely + + * include/std/barrier: Add missing runtime exception. + +2023-04-27 François Dumont + + Backported from master: + 2022-05-26 François Dumont + + * python/libstdcxx/v6/printers.py (StdSpanPrinter.__init__): + Strip typename from version namespace. + +2023-04-27 Philipp Fent + + Backported from master: + 2022-04-25 Philipp Fent + + * python/libstdcxx/v6/printers.py (StdSpanPrinter._iterator): + Rename as iterator. + (StdInitializerListPrinter): Define new printer. + (build_libstdcxx_dictionary): Register new printer. + * testsuite/libstdc++-prettyprinters/cxx11.cc: Check printer for + initializer_list. + +2023-04-27 Philipp Fent + + Backported from master: + 2022-04-19 Philipp Fent + + * python/libstdcxx/v6/printers.py (StdSpanPrinter): Define. + * testsuite/libstdc++-prettyprinters/cxx20.cc: Test it. + +2023-04-27 Jonathan Wakely + + * include/std/atomic: Add missing @endcond doxygen comment. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2023-04-04 Jonathan Wakely + + * doc/xml/manual/extensions.xml: Remove std::bad_exception from + example program. + * doc/html/manual/ext_demangling.html: Regenerate. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2023-04-27 Jonathan Wakely + + * doc/doxygen/user.cfg.in (SOURCE_BROWSER): Only set to YES for + HTML docs. + * include/bits/gslice_array.h (_DEFINE_VALARRAY_OPERATOR): Omit + from doxygen docs. + * include/bits/indirect_array.h (_DEFINE_VALARRAY_OPERATOR): + Likewise. + * include/bits/mask_array.h (_DEFINE_VALARRAY_OPERATOR): + Likewise. + * include/bits/slice_array.h (_DEFINE_VALARRAY_OPERATOR): + Likewise. + * include/std/valarray (_DEFINE_VALARRAY_UNARY_OPERATOR) + (_DEFINE_VALARRAY_AUGMENTED_ASSIGNMENT) + (_DEFINE_VALARRAY_EXPR_AUGMENTED_ASSIGNMENT) + (_DEFINE_BINARY_OPERATOR): Likewise. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2022-10-28 Jonathan Wakely + + * include/bits/fs_path.h (path::filename()): Fix dangling + reference. + +2023-04-27 Jonathan Wakely + + PR libstdc++/109064 + * python/libstdcxx/v6/xmethods.py (SharedPtrUseCountWorker): + Remove self-recursion in __init__. Add missing _supports. + * testsuite/libstdc++-xmethods/shared_ptr.cc: Check use_count() + and unique(). + +2023-04-27 Jonathan Wakely + + Backported from master: + 2023-02-28 Jonathan Wakely + + PR libstdc++/108952 + * include/bits/uses_allocator_args.h + (uses_allocator_construction_args): Implement LWG 3527. + * testsuite/20_util/pair/astuple/get-2.cc: New test. + * testsuite/20_util/scoped_allocator/108952.cc: New test. + * testsuite/20_util/uses_allocator/lwg3527.cc: New test. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2023-02-16 Jonathan Wakely + + * include/experimental/optional: Fix header name in comment. + 2023-03-21 Matthias Kretz Backported from master: