public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-8739] libstdc++: Remove noexcept from std::osyncstream::operator=
@ 2024-02-02 10:24 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2024-02-02 10:24 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:67f5a8c802463228da7c7bb2ab100095217560a6

commit r14-8739-g67f5a8c802463228da7c7bb2ab100095217560a6
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Thu Feb 1 21:23:27 2024 +0000

    libstdc++: Remove noexcept from std::osyncstream::operator=
    
    This should not be noexcept because its _M_syncbuf member has a
    potentially-throwing move assignment operator. The noexcept was removed
    by LWG 3867.
    
    libstdc++-v3/ChangeLog:
    
            * include/std/syncstream (basic_osyncstream::operator=): Remove
            noexcept, as per LWG 3867.

Diff:
---
 libstdc++-v3/include/std/syncstream | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/std/syncstream b/libstdc++-v3/include/std/syncstream
index a84c93a61eee..08a901b62fd0 100644
--- a/libstdc++-v3/include/std/syncstream
+++ b/libstdc++-v3/include/std/syncstream
@@ -285,7 +285,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
       ~basic_osyncstream() = default;
 
-      basic_osyncstream& operator=(basic_osyncstream&&) noexcept = default;
+      basic_osyncstream& operator=(basic_osyncstream&&) = default;
 
       syncbuf_type* rdbuf() const noexcept
       { return const_cast<syncbuf_type*>(&_M_syncbuf); }

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

only message in thread, other threads:[~2024-02-02 10:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-02 10:24 [gcc r14-8739] libstdc++: Remove noexcept from std::osyncstream::operator= 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).