aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/blob.h
diff options
context:
space:
mode:
authorswarmer <swarmer@yandex-team.ru>2022-02-10 16:46:31 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:31 +0300
commit317da38588b7898a99fd9168571408123350012b (patch)
tree25eebc31526019ad39a6c1b13f492963d97ba439 /util/memory/blob.h
parent3b2241461d41d41ba1a706b0750c4f0f55c344f6 (diff)
downloadydb-317da38588b7898a99fd9168571408123350012b.tar.gz
Restoring authorship annotation for <swarmer@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/memory/blob.h')
-rw-r--r--util/memory/blob.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/memory/blob.h b/util/memory/blob.h
index 20c02a68df..d13b2d3db4 100644
--- a/util/memory/blob.h
+++ b/util/memory/blob.h
@@ -74,12 +74,12 @@ public:
Ref();
}
- TBlob(TBlob&& r) noexcept
- : TBlob()
- {
- this->Swap(r);
- }
-
+ TBlob(TBlob&& r) noexcept
+ : TBlob()
+ {
+ this->Swap(r);
+ }
+
inline TBlob(const void* data, size_t length, TBase* base) noexcept
: S_(data, length, base)
{