Skip to content
Open
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: 1 addition & 3 deletions include/stdexec/__detail/__get_completion_signatures.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Copyright (c) 2021-2024 NVIDIA Corporation
*
* Licensed under the Apache License Version 2.0 with LLVM Exceptions
Expand Down Expand Up @@ -372,11 +372,9 @@ namespace STDEXEC
//! See @ref get_completion_signatures() for the full description.
STDEXEC_MODULE_EXPORT
template <class _Sender, class _Env>
requires __has_get_completion_signatures<_Sender, _Env>
consteval auto get_completion_signatures()
{
using __new_sndr_t = transform_sender_result_t<_Sender, _Env>;
static_assert(!__merror<__new_sndr_t>);
return __cmplsigs::__get_completion_signatures_helper<__new_sndr_t, _Env>();
}

Expand Down