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
commit9e67c55ced4ba4ae2cde004ccb91f1f1573ecfa9 (patch)
tree5097e23db7eddaeb52718e15908310216b125cb8 /util/memory/blob.h
parentbab6bea2cd46463bec931057fae2181f02d211d2 (diff)
downloadydb-9e67c55ced4ba4ae2cde004ccb91f1f1573ecfa9.tar.gz
Restoring authorship annotation for <ssmike@yandex-team.ru>. Commit 1 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 20c02a68df..6f26cfe55a 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: