public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-4392] libstdc++: Fix error in experimental::strand
@ 2020-10-26 21:18 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2020-10-26 21:18 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:b784bbbe45414084551a824504650f21cb653ca1

commit r11-4392-gb784bbbe45414084551a824504650f21cb653ca1
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Oct 26 21:00:06 2020 +0000

    libstdc++: Fix error in experimental::strand
    
    libstdc++-v3/ChangeLog:
    
            * include/experimental/executor (strand::_State): Fix thinko.

Diff:
---
 libstdc++-v3/include/experimental/executor | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/include/experimental/executor b/libstdc++-v3/include/experimental/executor
index 45e813f6747..462a4b24b16 100644
--- a/libstdc++-v3/include/experimental/executor
+++ b/libstdc++-v3/include/experimental/executor
@@ -1602,8 +1602,8 @@ inline namespace v1
       {
 #if defined(_GLIBCXX_HAS_GTHREADS)
 	bool
-	running_in_this_thread() const
-	{ return std::this_thread::get_id() == _M_state->_M_running_on; }
+	running_in_this_thread() const noexcept
+	{ return std::this_thread::get_id() == _M_running_on; }
 
 	std::thread::id _M_running_on;
 #else


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

only message in thread, other threads:[~2020-10-26 21:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-26 21:18 [gcc r11-4392] libstdc++: Fix error in experimental::strand 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).