diff options
author | the0 <the0@yandex-team.ru> | 2022-02-10 16:51:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:52 +0300 |
commit | 6ab3ef1bf61ea8fc15ead03026798320e25c5455 (patch) | |
tree | 1e7596e57f9b2c070185325ad557906741994ec6 /util/generic/lazy_value.h | |
parent | 31b5d49128f87d4f12ef17f7e681620416030f5c (diff) | |
download | ydb-6ab3ef1bf61ea8fc15ead03026798320e25c5455.tar.gz |
Restoring authorship annotation for <the0@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/lazy_value.h')
-rw-r--r-- | util/generic/lazy_value.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/generic/lazy_value.h b/util/generic/lazy_value.h index 3c720f76b5..447886977b 100644 --- a/util/generic/lazy_value.h +++ b/util/generic/lazy_value.h @@ -9,9 +9,9 @@ public: using TInitializer = std::function<T()>; TLazyValueBase() = default; - - TLazyValueBase(TInitializer initializer) - : Initializer(std::move(initializer)) + + TLazyValueBase(TInitializer initializer) + : Initializer(std::move(initializer)) { } |