diff options
author | ssmike <ssmike@yandex-team.ru> | 2022-02-10 16:52:02 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:02 +0300 |
commit | cfa174d06a65d4408b22b58d3829393e97020695 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/memory/blob.h | |
parent | 9e67c55ced4ba4ae2cde004ccb91f1f1573ecfa9 (diff) | |
download | ydb-cfa174d06a65d4408b22b58d3829393e97020695.tar.gz |
Restoring authorship annotation for <ssmike@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/memory/blob.h')
-rw-r--r-- | util/memory/blob.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/util/memory/blob.h b/util/memory/blob.h index 6f26cfe55a..20c02a68df 100644 --- a/util/memory/blob.h +++ b/util/memory/blob.h @@ -63,10 +63,10 @@ public: /** * Constructs a null blob (data array points to nullptr). */ - TBlob() noexcept - : S_(nullptr, 0, nullptr) - { - } + TBlob() noexcept + : S_(nullptr, 0, nullptr) + { + } inline TBlob(const TBlob& r) noexcept : S_(r.S_) @@ -308,15 +308,15 @@ public: private: inline void Ref() noexcept { - if (S_.Base) { - S_.Base->Ref(); - } + if (S_.Base) { + S_.Base->Ref(); + } } inline void UnRef() noexcept { - if (S_.Base) { - S_.Base->UnRef(); - } + if (S_.Base) { + S_.Base->UnRef(); + } } private: |