mirror of
https://github.com/boostorg/asio.git
synced 2025-05-12 14:11:39 +00:00
This change allows us to write: co_spawn(executor, echo(std::move(socket)), detached); instead of: co_spawn(executor, [socket = std::move(socket)]() mutable { return echo(std::move(socket)); }, detached);