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 r10-10195] libstdc++: Implement LWG 3557 change to convertible_to
Date: Tue, 12 Oct 2021 18:37:35 +0000 (GMT)	[thread overview]
Message-ID: <20211012183735.315A63858413@sourceware.org> (raw)

https://gcc.gnu.org/g:424972e8ce97fecd8b7ab900c0c9c5eb233728a1

commit r10-10195-g424972e8ce97fecd8b7ab900c0c9c5eb233728a1
Author: Patrick Palka <ppalka@redhat.com>
Date:   Fri Jun 18 11:51:33 2021 -0400

    libstdc++: Implement LWG 3557 change to convertible_to
    
    libstdc++-v3/ChangeLog:
    
            * include/std/concepts (convertible_to): Just use declval as per
            LWG 3557.
    
    (cherry picked from commit 83faf7eacd2081a373afb6069fd923c2dc497271)

Diff:
---
 libstdc++-v3/include/std/concepts | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/libstdc++-v3/include/std/concepts b/libstdc++-v3/include/std/concepts
index e710a5e6ecd..5d173e5ebed 100644
--- a/libstdc++-v3/include/std/concepts
+++ b/libstdc++-v3/include/std/concepts
@@ -70,9 +70,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   /// [concept.convertible], concept convertible_to
   template<typename _From, typename _To>
     concept convertible_to = is_convertible_v<_From, _To>
-      && requires(add_rvalue_reference_t<_From> (&__f)()) {
-	  static_cast<_To>(__f());
-      };
+      && requires { static_cast<_To>(std::declval<_From>()); };
 
   /// [concept.commonref], concept common_reference_with
   template<typename _Tp, typename _Up>


                 reply	other threads:[~2021-10-12 18:37 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=20211012183735.315A63858413@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).