public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r10-10577] libstdc++: Fix noexcept-specifier for ranges::empty
@ 2022-04-26 13:13 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2022-04-26 13:13 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:01c72ccad94e4f7b71504e502cba43d62b658143

commit r10-10577-g01c72ccad94e4f7b71504e502cba43d62b658143
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Jun 14 22:42:05 2021 +0100

    libstdc++: Fix noexcept-specifier for ranges::empty
    
    Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/range_access.h (ranges::empty): Check whether
            conversion to bool can throw.
            * testsuite/std/ranges/access/empty.cc: Check for correct
            noexcept-specifier.
    
    (cherry picked from commit f9598d89a9f5a327ecdfa6f6978a0cfbe4447111)

Diff:
---
 libstdc++-v3/include/bits/range_access.h          |  2 +-
 libstdc++-v3/testsuite/std/ranges/access/empty.cc | 31 +++++++++++++++++++++++
 2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/bits/range_access.h b/libstdc++-v3/include/bits/range_access.h
index 36bc55e6559..aee72c3fae4 100644
--- a/libstdc++-v3/include/bits/range_access.h
+++ b/libstdc++-v3/include/bits/range_access.h
@@ -773,7 +773,7 @@ namespace ranges
 	_S_noexcept()
 	{
 	  if constexpr (__member_empty<_Tp>)
-	    return noexcept(std::declval<_Tp>().empty());
+	    return noexcept(bool(std::declval<_Tp>().empty()));
 	  else if constexpr (__size0_empty<_Tp>)
 	    return noexcept(_Size{}(std::declval<_Tp>()) == 0);
 	  else
diff --git a/libstdc++-v3/testsuite/std/ranges/access/empty.cc b/libstdc++-v3/testsuite/std/ranges/access/empty.cc
index 4b54ed7b367..47dfca6513f 100644
--- a/libstdc++-v3/testsuite/std/ranges/access/empty.cc
+++ b/libstdc++-v3/testsuite/std/ranges/access/empty.cc
@@ -68,9 +68,40 @@ test02()
   VERIFY( !std::ranges::empty(so) );
 }
 
+void
+test04()
+{
+  struct E1
+  {
+    bool empty() const noexcept { return {}; }
+  };
+
+  static_assert( noexcept(std::ranges::empty(E1{})) );
+
+  struct E2
+  {
+    bool empty() const noexcept(false) { return {}; }
+  };
+
+  static_assert( ! noexcept(std::ranges::empty(E2{})) );
+
+  struct E3
+  {
+    struct B
+    {
+      explicit operator bool() const noexcept(false) { return true; }
+    };
+
+    B empty() const noexcept { return {}; }
+  };
+
+  static_assert( ! noexcept(std::ranges::empty(E3{})) );
+}
+
 int
 main()
 {
   test01();
   test02();
+  test04();
 }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-26 13:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-26 13:13 [gcc r10-10577] libstdc++: Fix noexcept-specifier for ranges::empty Jonathan Wakely

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).