mirror of
https://github.com/boostorg/asio.git
synced 2026-02-01 20:12:09 +00:00
3f12308c034113dab9c233c4d3b1f4e75c94e156
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);
Description
Mirrored via gitea-mirror
Languages
C++
99.6%
HTML
0.2%
Perl
0.2%