From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id CED7D3858D37; Fri, 28 Apr 2023 00:19:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CED7D3858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682641178; bh=qaN9hQzqGWW6nxI+tKWywBSB5TwCGpFB74wUmPxG3zg=; h=From:To:Subject:Date:From; b=qNFAe19rUhO07RqA6IjopEqegzBibaqkwu6u8CgLcifbQwGmjvuuR6QYVuCx6HPAc g1RC8zy3sf9XyNY9Jr9TJRd3xFDder/bD1mxv58nkzo8N/H9+16Ee+KKC0PmY2YcxL 8ZTvEw58cw02Pr8CNV1uiwi7bpPQ3pDzysljuYWs= 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 r10-11324] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-10 X-Git-Oldrev: c73f20e67ee8d268bf0dfd6732c1bd3e79e098ca X-Git-Newrev: 256c9824a5c2d8def1105f077327e097657905d0 Message-Id: <20230428001938.CED7D3858D37@sourceware.org> Date: Fri, 28 Apr 2023 00:19:38 +0000 (GMT) List-Id: https://gcc.gnu.org/g:256c9824a5c2d8def1105f077327e097657905d0 commit r10-11324-g256c9824a5c2d8def1105f077327e097657905d0 Author: GCC Administrator Date: Fri Apr 28 00:18:57 2023 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- libstdc++-v3/ChangeLog | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 99 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 1be9436b617..eaf7f85c3fc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,101 @@ +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/std/memory (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-04-27 Jonathan Wakely + + Backported from master: + 2022-07-20 Jonathan Wakely + + PR libstdc++/100823 + * include/bits/stl_iterator.h (common_iterator): Define move + constructor and move assignment operator. + (common_iterator::_M_assign): New function implementing + assignment. + (common_iterator::operator=): Use _M_assign. + (common_iterator::_S_valueless): New constant. + * testsuite/24_iterators/common_iterator/100823.cc: New test. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2022-07-20 Jonathan Wakely + + * include/bits/stl_iterator.h (common_iterator): Fix incorrect + uses of is_nothrow_assignable_v. Fix inconsistent constraints on + friend declaration. Do not move argument in copy constructor. + * testsuite/24_iterators/common_iterator/1.cc: Check for + noexcept constructibnle/assignable. + +2023-04-27 Jonathan Wakely + + Backported from master: + 2022-11-23 Jonathan Wakely + + PR libstdc++/107814 + * testsuite/experimental/filesystem/iterators/error_reporting.cc: + Use a static buffer with space after it. + 2023-03-16 Jonathan Wakely Backported from master: