We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a3afb8 commit 61391f3Copy full SHA for 61391f3
include/stdexec/__detail/__spawn_future.hpp
@@ -216,13 +216,13 @@ namespace STDEXEC
216
{
217
constexpr bool __non_throwing = (__nothrow_constructible_from<__decay_t<_T>, _T> && ...);
218
219
- try
+ STDEXEC_TRY
220
221
__state_->__result_.template emplace<__decayed_tuple<_CPO, _T...>>(_CPO{},
222
static_cast<_T&&>(
223
__t)...);
224
}
225
- catch (...)
+ STDEXEC_CATCH_ALL
226
227
if constexpr (!__non_throwing)
228
@@ -814,11 +814,11 @@ namespace STDEXEC
814
815
constexpr bool __non_throwing = noexcept(__state.__run());
816
817
818
819
__state.__run();
820
821
822
823
824
0 commit comments