From a97b1b6e49a18c7cdc8307b11a8f5ba708bf6e4a Mon Sep 17 00:00:00 2001 From: Klemens Date: Wed, 6 Dec 2023 07:39:35 +0800 Subject: [PATCH] python example missing rename fix. --- example/python.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/python.cpp b/example/python.cpp index 76386766..3f2d50a4 100644 --- a/example/python.cpp +++ b/example/python.cpp @@ -297,7 +297,7 @@ cobalt::promise test_promise() asio::steady_timer tim{co_await cobalt::this_coro::executor, std::chrono::milliseconds(100)}; - co_await tim.async_wait(async::use_op); + co_await tim.async_wait(cobalt::use_op); co_return 42; }