@@ -39,7 +39,7 @@ namespace exec {
3939 struct __operation {
4040 using _Context = __context<STDEXEC::__t <_ReceiverId>, STDEXEC::__t <_ArgsId>>;
4141 using _Result = __call_result_t <_Fun, _Context&>;
42- using _State = __if_c<same_as<_Result, void >, __void, std::optional<_Result>>;
42+ using _State = __if_c<__std:: same_as<_Result, void >, __void, std::optional<_Result>>;
4343
4444 struct __t : STDEXEC::__immovable {
4545 using __id = __operation;
@@ -69,8 +69,8 @@ namespace exec {
6969
7070 template <__decays_to<__t > _Self, receiver_of<completion_signatures> _Receiver>
7171 requires __callable<_Fun, __context<_Receiver, _Args>&>
72- && constructible_from<_Fun, __copy_cvref_t <_Self, _Fun>>
73- && constructible_from<_Args, __copy_cvref_t <_Self, _Args>>
72+ && __std:: constructible_from<_Fun, __copy_cvref_t <_Self, _Fun>>
73+ && __std:: constructible_from<_Args, __copy_cvref_t <_Self, _Args>>
7474 STDEXEC_EXPLICIT_THIS_BEGIN (auto connect)(this _Self&& __self, _Receiver __rcvr)
7575 -> STDEXEC::__t <__operation<STDEXEC::__id<_Receiver>, _Fun, _ArgsId>> {
7676 static_assert (__nothrow_callable<_Fun, __context<_Receiver, _Args>&>);
@@ -87,8 +87,8 @@ namespace exec {
8787 template <__completion_signature... _Sigs>
8888 struct __create_t {
8989 template <class _Fun , class ... _Args>
90- requires move_constructible<_Fun>
91- && constructible_from<__decayed_std_tuple<_Args...>, _Args...>
90+ requires __std:: move_constructible<_Fun>
91+ && __std:: constructible_from<__decayed_std_tuple<_Args...>, _Args...>
9292 auto operator ()(_Fun __fun, _Args&&... __args) const
9393 -> __t<__sender<_Fun, __id<__decayed_std_tuple<_Args...>>, _Sigs...>> {
9494 return {static_cast <_Fun&&>(__fun), {static_cast <_Args&&>(__args)...}};
0 commit comments