diff options
author | trofimenkov <trofimenkov@yandex-team.ru> | 2022-02-10 16:49:31 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:31 +0300 |
commit | 7c6139b61ced2798d1134b68b8facf6925a36b8e (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/memory/tempbuf.cpp | |
parent | 30cebc2cfa79af3b577760a113e203a79450e6b6 (diff) | |
download | ydb-7c6139b61ced2798d1134b68b8facf6925a36b8e.tar.gz |
Restoring authorship annotation for <trofimenkov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/memory/tempbuf.cpp')
-rw-r--r-- | util/memory/tempbuf.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/memory/tempbuf.cpp b/util/memory/tempbuf.cpp index 886c57a5a2..09a2d0f140 100644 --- a/util/memory/tempbuf.cpp +++ b/util/memory/tempbuf.cpp @@ -198,9 +198,9 @@ TTempBuf::TTempBuf(const TTempBuf&) noexcept = default; TTempBuf::TTempBuf(TTempBuf&& b) noexcept : Impl_(std::move(b.Impl_)) -{ -} - +{ +} + TTempBuf::~TTempBuf() = default; TTempBuf& TTempBuf::operator=(const TTempBuf& b) noexcept { @@ -271,9 +271,9 @@ void TTempBuf::Append(const void* data, size_t len) { } bool TTempBuf::IsNull() const noexcept { - return !Impl_; -} - + return !Impl_; +} + #if 0 #include <util/datetime/cputimer.h> |