Skip to content

Commit

Permalink
window ci debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ladnir committed Jun 9, 2024
1 parent ec0d7dc commit 62b1b30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion macoro/sync_wait.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ namespace macoro
bool await_ready() noexcept { return false; };

template<typename C>
void await_suspend(C c) noexcept { c.promise().set(); }
void await_suspend(C c) noexcept {
std::cout << "final\n" << std::flush;
c.promise().set(); }

void await_resume() noexcept {}
};
Expand Down

0 comments on commit 62b1b30

Please sign in to comment.