summaryrefslogtreecommitdiffstats
path: root/library/cpp/coroutine/engine
diff options
context:
space:
mode:
authortimestep <[email protected]>2022-02-10 16:49:17 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:17 +0300
commit30f4921b0fa8722e5531e72cb40a93b526f6973a (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/coroutine/engine
parent38b4bd28ca420294f532ac7ca6b2770d60e3dfd0 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/coroutine/engine')
-rw-r--r--library/cpp/coroutine/engine/cont_poller.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/coroutine/engine/cont_poller.h b/library/cpp/coroutine/engine/cont_poller.h
index 2211ef3a9f1..b638b2df1af 100644
--- a/library/cpp/coroutine/engine/cont_poller.h
+++ b/library/cpp/coroutine/engine/cont_poller.h
@@ -111,7 +111,7 @@ namespace NCoro {
T* Get(size_t index) {
TRef& ret = Lst_.Get(index);
if (!ret) {
- ret = TRef(new (&Pool_) TValue());
+ ret = TRef(new (&Pool_) TValue());
}
return ret.Get();
}