From ee5428970d9919d462efd515c175e04725b6524b Mon Sep 17 00:00:00 2001 From: Ben FrantzDale Date: Tue, 8 Oct 2024 10:57:02 -0400 Subject: [PATCH] Add comment to get_delegation_scheduler_t. --- include/stdexec/__detail/__env.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/stdexec/__detail/__env.hpp b/include/stdexec/__detail/__env.hpp index da134ef36..704cbe033 100644 --- a/include/stdexec/__detail/__env.hpp +++ b/include/stdexec/__detail/__env.hpp @@ -151,6 +151,9 @@ namespace stdexec { auto operator()() const noexcept; }; + //! The type for `get_delegation_scheduler` [exec.get.delegation.scheduler] + //! A query object that asks for a scheduler that can be used to delegate + //! work to for the purpose of forward progress delegation ([intro.progress]). struct get_delegation_scheduler_t : __query { static constexpr auto query(forwarding_query_t) noexcept -> bool { return true;