Skip to content

Commit 52deced

Browse files
authored
use __mcall to make the return type consistent with the constraints and noexcept clause
1 parent 5a1ac2b commit 52deced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/stdexec/__detail/__tuple.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ namespace STDEXEC {
222222
template <class... _Ts, class... _Us, __callable<_Us..., __mcall<_CvRef, _Ts>...> _Fn>
223223
auto operator()(_Fn&& __fn, __tuple_t<_Ts...>&& __tupl, _Us&&... __us) const
224224
noexcept(__nothrow_callable<_Fn, _Us..., __mcall<_CvRef, _Ts>...>)
225-
-> __call_result_t<_Fn, _Us..., typename _CvRef::template __f<_Ts>...>;
225+
-> __call_result_t<_Fn, _Us..., __mcall<_CvRef, _Ts>...>;
226226
};
227227

228228
template <class _Tuple>

0 commit comments

Comments
 (0)