From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id A2440398B40D; Wed, 23 Sep 2020 00:18:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A2440398B40D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1600820326; bh=llGfEH9Snplbc0h1xtr5OPPt8etaIWzJXEZAuxZEAmo=; h=From:To:Subject:Date:From; b=Hr1SH1nKnq6dzBWRlv+s3nF1OUZgxYfR9uQZ2dwc/Iuxfl8A2fZAYRhyBlKceNL8j kdodAz+mtxa9xOzR53RpCrxfEhMszk8DPLe7nfAvcOBgDswNw8UiUE5bTxKRh4gHir FqYGd/gL7Q4IU1OXu3QjoHDsDXUnTHEi+BambTq0= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r9-8933] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-9 X-Git-Oldrev: e7285587186bac5692171d7493e29e16c729281d X-Git-Newrev: c189842fef7f5fa87edcba271af4cb6796a03492 Message-Id: <20200923001846.A2440398B40D@sourceware.org> Date: Wed, 23 Sep 2020 00:18:46 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Sep 2020 00:18:46 -0000 https://gcc.gnu.org/g:c189842fef7f5fa87edcba271af4cb6796a03492 commit r9-8933-gc189842fef7f5fa87edcba271af4cb6796a03492 Author: GCC Administrator Date: Wed Sep 23 00:18:20 2020 +0000 Daily bump. Diff: --- gcc/DATESTAMP | 2 +- libstdc++-v3/ChangeLog | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index ca3ee10cb82..1a983d8f051 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20200922 +20200923 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c1823865056..3c40bbf0764 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,38 @@ +2020-09-22 Jonathan Wakely + + Backported from master: + 2020-09-22 Jonathan Wakely + + PR libstdc++/97167 + * src/c++17/fs_path.cc (path::_Parser::root_path()): Check + for empty string before inspecting the first character. + * testsuite/27_io/filesystem/path/append/source.cc: Append + empty string_view to path. + +2020-09-22 Jonathan Wakely + + Backported from master: + 2020-09-22 Jonathan Wakely + + PR libstdc++/96803 + * include/std/tuple + (_Tuple_impl(allocator_arg_t, Alloc, const _Tuple_impl&)): + Use correct value category in __use_alloc call. + * testsuite/20_util/tuple/cons/96803.cc: Check with constructors + that require correct value category to be used. + +2020-09-22 Jonathan Wakely + + Backported from master: + 2020-08-26 Jonathan Wakely + + PR libstdc++/96803 + * include/std/tuple + (_Tuple_impl(allocator_arg_t, Alloc, const _Tuple_impl&)): + Replace parameter pack with a type parameter and a pack and pass + the first type to __use_alloc. + * testsuite/20_util/tuple/cons/96803.cc: New test. + 2020-09-21 Jonathan Wakely Backported from master: