File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ namespace exec {
3737 using __mall_contained_in_t = __mapply<__mall_contained_in_impl<_Haystack>, _Needles>;
3838
3939 template <class _Needles , class _Haystack >
40- concept __all_contained_in_t = __v<__mall_contained_in_t <_Needles, _Haystack>>;
40+ concept __all_contained_in = __v<__mall_contained_in_t <_Needles, _Haystack>>;
4141 } // namespace __sequence_sndr
4242
4343 // This concept checks if a given sender satisfies the requirements to be returned from `set_next`.
4444 template <class _Sender , class _Env = stdexec::env<>>
4545 concept next_sender =
4646 stdexec::sender_in<_Sender, _Env>
47- && __sequence_sndr::__all_contained_in_t <
47+ && __sequence_sndr::__all_contained_in <
4848 stdexec::completion_signatures_of_t <_Sender, _Env>,
4949 stdexec::completion_signatures<stdexec::set_value_t (), stdexec::set_stopped_t ()>
5050 >;
You can’t perform that action at this time.
0 commit comments