diff options
author | bort <bort@yandex-team.ru> | 2022-02-10 16:49:51 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:51 +0300 |
commit | c943ab142d4182af287664691cf116c143172792 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/ptr.h | |
parent | 3c825ec76d7a17f9817306b93c44845be6a62d58 (diff) | |
download | ydb-c943ab142d4182af287664691cf116c143172792.tar.gz |
Restoring authorship annotation for <bort@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/ptr.h')
-rw-r--r-- | util/generic/ptr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/ptr.h b/util/generic/ptr.h index c7a95dca65..19db0e3ec5 100644 --- a/util/generic/ptr.h +++ b/util/generic/ptr.h @@ -792,7 +792,7 @@ template <class T, class C, class D> class TSharedPtr: public TPointerBase<TSharedPtr<T, C, D>, T> { template <class TT, class CC, class DD> friend class TSharedPtr; - + public: inline TSharedPtr() noexcept : T_(nullptr) @@ -846,7 +846,7 @@ public: { Ref(); } - + template <class TT, class = TGuardConversion<T, TT>> inline TSharedPtr(TSharedPtr<TT, C, D>&& t) noexcept : T_(t.T_) |