diff options
author | the0 <[email protected]> | 2022-02-10 16:51:52 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:51:52 +0300 |
commit | 6ab3ef1bf61ea8fc15ead03026798320e25c5455 (patch) | |
tree | 1e7596e57f9b2c070185325ad557906741994ec6 /util/generic/lazy_value.h | |
parent | 31b5d49128f87d4f12ef17f7e681620416030f5c (diff) |
Restoring authorship annotation for <[email protected]>. 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 3c720f76b5a..447886977b0 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)) { } |