From a3d552f771f241bb69dbce12ca4880cfe7289e0f Mon Sep 17 00:00:00 2001 From: yulin Date: Tue, 25 Aug 2026 18:18:56 +0800 Subject: [PATCH] Make `get_completion_signatures` align with the standard --- include/stdexec/__detail/__get_completion_signatures.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/stdexec/__detail/__get_completion_signatures.hpp b/include/stdexec/__detail/__get_completion_signatures.hpp index b9f55229e..830cc640b 100644 --- a/include/stdexec/__detail/__get_completion_signatures.hpp +++ b/include/stdexec/__detail/__get_completion_signatures.hpp @@ -1,4 +1,4 @@ -/* +/* * Copyright (c) 2021-2024 NVIDIA Corporation * * Licensed under the Apache License Version 2.0 with LLVM Exceptions @@ -372,11 +372,9 @@ namespace STDEXEC //! See @ref get_completion_signatures() for the full description. STDEXEC_MODULE_EXPORT template - requires __has_get_completion_signatures<_Sender, _Env> consteval auto get_completion_signatures() { using __new_sndr_t = transform_sender_result_t<_Sender, _Env>; - static_assert(!__merror<__new_sndr_t>); return __cmplsigs::__get_completion_signatures_helper<__new_sndr_t, _Env>(); }