public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Patrick Palka <ppalka@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r12-1659] libstdc++: Implement LWG 3553 changes to split_view
Date: Sat, 19 Jun 2021 00:51:22 +0000 (GMT)	[thread overview]
Message-ID: <20210619005122.13CAA3894426@sourceware.org> (raw)

https://gcc.gnu.org/g:15736576df739fdcc5e795961dae30c7b0c87967

commit r12-1659-g15736576df739fdcc5e795961dae30c7b0c87967
Author: Patrick Palka <ppalka@redhat.com>
Date:   Fri Jun 18 20:50:22 2021 -0400

    libstdc++: Implement LWG 3553 changes to split_view
    
    libstdc++-v3/ChangeLog:
    
            * include/std/ranges (split_view::_OuterIter::value_type::begin):
            Remove the non-const overload, and remove the copyable constraint
            on the const overload as per LWG 3553.

Diff:
---
 libstdc++-v3/include/std/ranges | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/libstdc++-v3/include/std/ranges b/libstdc++-v3/include/std/ranges
index f93a880ff8a..ff093bfdf93 100644
--- a/libstdc++-v3/include/std/ranges
+++ b/libstdc++-v3/include/std/ranges
@@ -2932,14 +2932,8 @@ namespace views::__adaptor
 
 	    constexpr _InnerIter<_Const>
 	    begin() const
-	      requires copyable<_OuterIter>
 	    { return _InnerIter<_Const>{_M_i}; }
 
-	    constexpr _InnerIter<_Const>
-	    begin()
-	      requires (!copyable<_OuterIter>)
-	    { return _InnerIter<_Const>{std::move(_M_i)}; }
-
 	    constexpr default_sentinel_t
 	    end() const
 	    { return default_sentinel; }


                 reply	other threads:[~2021-06-19  0:51 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210619005122.13CAA3894426@sourceware.org \
    --to=ppalka@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).