Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/stdexec/__detail/__stop_when.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ namespace STDEXEC
template <stoppable_token _SenderToken, unstoppable_token _ReceiverToken>
[[nodiscard]]
constexpr auto
operator()(_SenderToken __sndr_token, _ReceiverToken __rcvr_token) const noexcept
-> _SenderToken
operator()(_SenderToken __sndr_token,
[[maybe_unused]] _ReceiverToken __rcvr_token) const noexcept -> _SenderToken
{
// when the receiver's stop token is unstoppable, the net token is just the
// sender's captured token
Expand Down
Loading