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 | 3c825ec76d7a17f9817306b93c44845be6a62d58 (patch) | |
tree | 80c18b6506c942ebf230310deca500141c308048 /util/generic | |
parent | 8e39421d5f7b28ca12255c9a4fd8a6c593592588 (diff) | |
download | ydb-3c825ec76d7a17f9817306b93c44845be6a62d58.tar.gz |
Restoring authorship annotation for <bort@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic')
-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 19db0e3ec5..c7a95dca65 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_) |