From 31a82820be123981e1e45468fd9939ed7458568b Mon Sep 17 00:00:00 2001 From: Sean Parent Date: Fri, 5 May 2023 21:37:24 -0700 Subject: [PATCH] Minor comment fix (#526) --- stlab/concurrency/future.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stlab/concurrency/future.hpp b/stlab/concurrency/future.hpp index 3405c480..392e2930 100755 --- a/stlab/concurrency/future.hpp +++ b/stlab/concurrency/future.hpp @@ -1543,7 +1543,7 @@ inline auto _reduce(E&&, R&& r) { /** implements the coroutine: - [](future>&& r) -> future { + [](future>&& r) -> task { co_return co_await co_await move(r); }