aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/blob.h
diff options
context:
space:
mode:
authorssmike <ssmike@yandex-team.ru>2022-02-10 16:52:02 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:52:02 +0300
commitcfa174d06a65d4408b22b58d3829393e97020695 (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb /util/memory/blob.h
parent9e67c55ced4ba4ae2cde004ccb91f1f1573ecfa9 (diff)
downloadydb-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.h20
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: