diff options
author | realtim <realtim@yandex-team.ru> | 2022-02-10 16:50:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:07 +0300 |
commit | b422b6e4645219a4002219ae77f5c4a83ac80b59 (patch) | |
tree | afc6c25ec86991448a260fdf0e8c606f0e495e64 /library/cpp/coroutine/engine | |
parent | 5d4dd6ff046150f3e5e4608ea4ce1a30b4dfee4f (diff) | |
download | ydb-b422b6e4645219a4002219ae77f5c4a83ac80b59.tar.gz |
Restoring authorship annotation for <realtim@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/coroutine/engine')
-rw-r--r-- | library/cpp/coroutine/engine/poller.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/coroutine/engine/poller.cpp b/library/cpp/coroutine/engine/poller.cpp index 61164fa56b..b955aad6d0 100644 --- a/library/cpp/coroutine/engine/poller.cpp +++ b/library/cpp/coroutine/engine/poller.cpp @@ -118,12 +118,12 @@ namespace { public TIntrusiveListItem<TVal>, public TObjectFromPool<TVal> { - // NOTE Constructor must be user-defined (and not =default) here - // because TVal objects are created in the UB-capable placement - // TObjectFromPool::new operator that stores data in a memory - // allocated for the object. Without user defined constructor - // zero-initialization takes place in TVal() expression and the - // data is overwritten. + // NOTE Constructor must be user-defined (and not =default) here + // because TVal objects are created in the UB-capable placement + // TObjectFromPool::new operator that stores data in a memory + // allocated for the object. Without user defined constructor + // zero-initialization takes place in TVal() expression and the + // data is overwritten. TVal() { } }; |