We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2dfa4 commit 0e615bcCopy full SHA for 0e615bc
include/stdexec/__detail/__sender_concepts.hpp
@@ -54,9 +54,15 @@ namespace STDEXEC
54
&& __std::move_constructible<__decay_t<_Sender>>
55
&& __std::constructible_from<__decay_t<_Sender>, _Sender>;
56
57
+#if STDEXEC_GCC() && STDEXEC_GCC_VERSION < 1300
58
+ template <auto _Completions>
59
+ inline constexpr bool __constant_completion_signatures_v =
60
+ __valid_completion_signatures<std::remove_const_t<decltype(_Completions)>>;
61
+#else
62
template <auto _Completions>
63
inline constexpr bool __constant_completion_signatures_v =
64
__valid_completion_signatures<decltype(_Completions)>;
65
+#endif
66
67
template <class _Sender, class... _Env>
68
concept sender_in =
0 commit comments