public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed] libstdc++: Make coroutine_handle<_Promise>::from_address() noexcept [PR 99021]
@ 2021-02-09 12:32 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2021-02-09 12:32 UTC (permalink / raw)
  To: libstdc++, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 293 bytes --]

The coroutine_handle<void>::from_address(void*) version is already
noexcept, and they do the same thing. Make them consistent.

libstdc++-v3/ChangeLog:

	PR libstdc++/99021
	* include/std/coroutine (coroutine_handle<P>::from_address): Add
	noexcept.

Tested x86_64-linux. Committed to trunk.


[-- Attachment #2: patch.txt --]
[-- Type: text/plain, Size: 1051 bytes --]

commit 26a3f288f1895a8c061c0458590542a3d2ee796a
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Tue Feb 9 11:23:29 2021

    libstdc++: Make coroutine_handle<_Promise>::from_address() noexcept [PR 99021]
    
    The coroutine_handle<void>::from_address(void*) version is already
    noexcept, and they do the same thing. Make them consistent.
    
    libstdc++-v3/ChangeLog:
    
            PR libstdc++/99021
            * include/std/coroutine (coroutine_handle<P>::from_address): Add
            noexcept.

diff --git a/libstdc++-v3/include/std/coroutine b/libstdc++-v3/include/std/coroutine
index e69024caf4c..209deb7bb42 100644
--- a/libstdc++-v3/include/std/coroutine
+++ b/libstdc++-v3/include/std/coroutine
@@ -206,7 +206,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
       constexpr void* address() const noexcept { return _M_fr_ptr; }
 
-      constexpr static coroutine_handle from_address(void* __a)
+      constexpr static coroutine_handle from_address(void* __a) noexcept
       {
 	coroutine_handle __self;
 	__self._M_fr_ptr = __a;

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

only message in thread, other threads:[~2021-02-09 12:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-09 12:32 [committed] libstdc++: Make coroutine_handle<_Promise>::from_address() noexcept [PR 99021] 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).