Skip to content

Commit 9cf2b47

Browse files
committed
fixes post rebase
1 parent 30b788e commit 9cf2b47

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

include/exec/variant_tail_sender.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ namespace exec {
207207
using __f =
208208
__mapply<
209209
_Continuation,
210-
__minvoke<__fold_right<__types<>, __push_back_flatten<__q<__types>>>, _Ts...>>;
210+
__minvoke<__mfold_right<__types<>, __push_back_flatten<__q<__types>>>, _Ts...>>;
211211
};
212212

213213
template <class _Continuation>

test/exec/test_tail_sender.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ struct ATailReceiver {
6363
int* called;
6464
friend void tag_invoke(ex::set_value_t, ATailReceiver&& __self, auto&&...) noexcept { ++*__self.called; }
6565
friend void tag_invoke(ex::set_stopped_t, ATailReceiver&& __self) noexcept { ++*__self.called; }
66-
friend ex::__debug_env_t<ex::__empty_env> tag_invoke(ex::get_env_t, const ATailReceiver&) {
67-
return {{}};
66+
friend ex::__empty_env tag_invoke(ex::get_env_t, const ATailReceiver&) {
67+
return {};
6868
}
6969
};
7070

@@ -83,8 +83,8 @@ struct ANestTailReceiver {
8383
++*__self.called;
8484
return __self.nested_tail_sender;
8585
}
86-
friend ex::__debug_env_t<ex::__empty_env> tag_invoke(ex::get_env_t, const ANestTailReceiver&) {
87-
return {{}};
86+
friend ex::__empty_env tag_invoke(ex::get_env_t, const ANestTailReceiver&) {
87+
return {};
8888
}
8989
};
9090

0 commit comments

Comments
 (0)