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 | b668a9fdd804ac5f20f1596f1c23dbd438d3dfe8 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/generic/lazy_value.h | |
parent | 6ab3ef1bf61ea8fc15ead03026798320e25c5455 (diff) | |
download | ydb-b668a9fdd804ac5f20f1596f1c23dbd438d3dfe8.tar.gz |
Restoring authorship annotation for <the0@yandex-team.ru>. Commit 2 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 447886977b..3c720f76b5 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)) { } |