You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The specification for a stop-source requires that the request_stop() method returns true if a stop-request was made and false if a stop-request could not be made (e.g. because a stop-request had already been made).
However, the current implementation of stdexec::inplace_stop_source::request_stop() as the result inverted.
It returns false if a stop-request was made and true if a stop-request was not made.
The specification for a stop-source requires that the
request_stop()
method returnstrue
if a stop-request was made andfalse
if a stop-request could not be made (e.g. because a stop-request had already been made).However, the current implementation of
stdexec::inplace_stop_source::request_stop()
as the result inverted.It returns
false
if a stop-request was made andtrue
if a stop-request was not made.See:
stdexec/include/stdexec/stop_token.hpp
Lines 248 to 275 in 519f931
The text was updated successfully, but these errors were encountered: