diff options
author | Ivan Korostelev <[email protected]> | 2022-02-10 16:46:41 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:41 +0300 |
commit | f3a52f9d3e18d1159abbc85fa65eeda69d971657 (patch) | |
tree | 203885df8c9af6c414a9ec107514b91912970ab9 /library/cpp/coroutine/engine | |
parent | 99609724f661f7e21d1cb08e8d80e87c3632fdb3 (diff) |
Restoring authorship annotation for Ivan Korostelev <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/coroutine/engine')
-rw-r--r-- | library/cpp/coroutine/engine/events.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/coroutine/engine/events.h b/library/cpp/coroutine/engine/events.h index 07cc4d25e87..2d7db781ca0 100644 --- a/library/cpp/coroutine/engine/events.h +++ b/library/cpp/coroutine/engine/events.h @@ -101,7 +101,7 @@ public: } void BroadCast(size_t number) noexcept { - for (size_t i = 0; i < number && !Waiters_.Empty(); ++i) { + for (size_t i = 0; i < number && !Waiters_.Empty(); ++i) { Waiters_.PopFront()->Wake(); } } |