diff options
author | Andrey Khalyavin <halyavin@gmail.com> | 2022-02-10 16:46:30 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:30 +0300 |
commit | 4b839d0704ee9be1dabb0310a1f03af24963637b (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/actors/interconnect/ut | |
parent | f773626848a7c7456803654292e716b83d69cc12 (diff) | |
download | ydb-4b839d0704ee9be1dabb0310a1f03af24963637b.tar.gz |
Restoring authorship annotation for Andrey Khalyavin <halyavin@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/actors/interconnect/ut')
-rw-r--r-- | library/cpp/actors/interconnect/ut/event_holder_pool_ut.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/actors/interconnect/ut/event_holder_pool_ut.cpp b/library/cpp/actors/interconnect/ut/event_holder_pool_ut.cpp index 5686d50590..e6b2bd4e4c 100644 --- a/library/cpp/actors/interconnect/ut/event_holder_pool_ut.cpp +++ b/library/cpp/actors/interconnect/ut/event_holder_pool_ut.cpp @@ -5,14 +5,14 @@ #include <library/cpp/monlib/dynamic_counters/counters.h> #include <library/cpp/actors/interconnect/event_holder_pool.h> -#include <atomic> - +#include <atomic> + using namespace NActors; template<typename T> TEventHolderPool Setup(T&& callback) { auto common = MakeIntrusive<TInterconnectProxyCommon>(); - common->DestructorQueueSize = std::make_shared<std::atomic<TAtomicBase>>(); + common->DestructorQueueSize = std::make_shared<std::atomic<TAtomicBase>>(); common->MaxDestructorQueueSize = 1024 * 1024; return TEventHolderPool(common, callback); } |