From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 15CCB385840D; Tue, 15 Nov 2022 00:21:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 15CCB385840D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668471686; bh=fxtY1AC8okK/0c+oUofEjg1/UIUUWD+xs1KMLObr070=; h=From:To:Subject:Date:From; b=D+4mmTvm+NwJYLtorrIZRBrkgSsxSfpSrQr9eKhjz4QUH3Q760Ji8tLbnb5NfoT0S ouetDh1ckBApIMy2FJFgh1ZBVWUy8nObn1R/2xvWQYbd9eTpUEy2hX4e7km51pjjw2 bvDFBicErLWl29IW7Vhw5zKMwcohgLTBY2vHWzv4= 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 r12-8911] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: 9c45321cdbf48419ced5d7d442e2f033ab8f476e X-Git-Newrev: 964af399bb7734535052a4f261ef5912dfb6c3f5 Message-Id: <20221115002126.15CCB385840D@sourceware.org> Date: Tue, 15 Nov 2022 00:21:25 +0000 (GMT) List-Id: https://gcc.gnu.org/g:964af399bb7734535052a4f261ef5912dfb6c3f5 commit r12-8911-g964af399bb7734535052a4f261ef5912dfb6c3f5 Author: GCC Administrator Date: Tue Nov 15 00:20:44 2022 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- libstdc++-v3/ChangeLog | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 9da330f584e..22ce612e636 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221114 +20221115 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f4cb4c04090..6776fb1c501 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,42 @@ +2022-11-14 Jonathan Wakely + + * include/bits/mofunc_impl.h (move_only_function::__param_t): + Use __is_scalar instead of is_trivially_copyable. + * testsuite/20_util/move_only_function/call.cc: Check parameters + involving incomplete types. + +2022-11-14 Jonathan Wakely + + Backported from master: + 2022-11-11 Jonathan Wakely + + PR libstdc++/95048 + * include/bits/fs_path.h (path::_Codecvt): New class template + that selects the kind of code conversion done. + (path::_Codecvt): Select based on sizeof(wchar_t). + (_GLIBCXX_CONV_FROM_UTF8): New macro to allow the same code to + be used for Windows and POSIX. + (path::_S_convert(const EcharT*, const EcharT*)): Simplify by + using _Codecvt and _GLIBCXX_CONV_FROM_UTF8 abstractions. + (path::_S_str_convert(basic_string_view, const A&)): + Simplify nested conditions. + * include/experimental/bits/fs_path.h (path::_Cvt): Define + nested typedef controlling type of code conversion done. + (path::_Cvt::_S_wconvert): Use new typedef. + (path::string(const A&)): Likewise. + * testsuite/27_io/filesystem/path/construct/95048.cc: New test. + * testsuite/experimental/filesystem/path/construct/95048.cc: New + test. + +2022-11-14 Nathaniel Shead + + Backported from master: + 2022-11-11 Nathaniel Shead + + PR libstdc++/103295 + * include/bits/basic_string.h (_M_use_local_data): Set active + member to _M_local_buf. + 2022-11-08 Jonathan Wakely Backported from master: