Skip to content

Commit 161b336

Browse files
authored
Apply suggestions from code review
Co-authored-by: Eric Niebler <eniebler@boost.org>
1 parent 0cbb217 commit 161b336

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/stdexec/algos/adaptors/test_write_env.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include <type_traits>
2222
#include <utility>
2323

24+
#include <exec/completion_signatures.hpp>
2425
#include <exec/single_thread_context.hpp>
2526
#include <stdexec/execution.hpp>
2627
#include <test_common/receivers.hpp>
@@ -70,7 +71,7 @@ namespace
7071
::STDEXEC::start(op);
7172
}
7273

73-
template <typename IncompleteType, typename Env = STDEXEC::env_of_t<IncompleteType>>
74+
template <class IncompleteType, class Env = STDEXEC::env_of_t<IncompleteType>>
7475
struct ReceiverIncomplete
7576
{
7677
using receiver_concept = STDEXEC::receiver_tag;
@@ -130,9 +131,8 @@ namespace
130131

131132
template <class Self, class... Env>
132133
static consteval auto get_completion_signatures()
133-
-> STDEXEC::__completion_signatures_of_t<STDEXEC::__copy_cvref_t<Self, Sndr>, Env...>
134134
{
135-
return {};
135+
return exec::get_child_completion_signatures<Self, Sndr, Env...>();
136136
}
137137

138138
template <STDEXEC::receiver Rcvr>

0 commit comments

Comments
 (0)