Update asymmetric.qbk

This commit is contained in:
Lunar-YZ 2024-01-02 10:38:42 +08:00 committed by GitHub
parent 0734aa18c1
commit 9113c98364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -289,7 +289,7 @@ After unwinding, a __coro__ is complete.
coro_t::push_type sink(
[&](coro_t::pull_type& source){
X x;
for(int i = 0; ;++i){
for(int i = 0; ; ++i){
std::cout << "fn(): " << i << std::endl;
// transfer execution control back to main()
source();