diff options
author | glebx777 <glebx777@yandex-team.ru> | 2022-02-10 16:49:44 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:44 +0300 |
commit | ab9150ae9d81b97b19a2a6a8b903f9a40791c8b4 (patch) | |
tree | ff7ea20bcb3779c1ae74319692b5b48686d480cc /util/stream/tempbuf.h | |
parent | 5a8cb97e0064c6b1afe060dc7a4a7c9c0eb879be (diff) | |
download | ydb-ab9150ae9d81b97b19a2a6a8b903f9a40791c8b4.tar.gz |
Restoring authorship annotation for <glebx777@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/stream/tempbuf.h')
-rw-r--r-- | util/stream/tempbuf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/stream/tempbuf.h b/util/stream/tempbuf.h index a6dc001025..3020db3a2b 100644 --- a/util/stream/tempbuf.h +++ b/util/stream/tempbuf.h @@ -4,17 +4,17 @@ #include <util/memory/tempbuf.h> -class TTempBufOutput: public IOutputStream, public TTempBuf { +class TTempBufOutput: public IOutputStream, public TTempBuf { public: - inline TTempBufOutput() = default; + inline TTempBufOutput() = default; - explicit TTempBufOutput(size_t size) + explicit TTempBufOutput(size_t size) : TTempBuf(size) { } - TTempBufOutput(TTempBufOutput&&) noexcept = default; - TTempBufOutput& operator=(TTempBufOutput&&) noexcept = default; + TTempBufOutput(TTempBufOutput&&) noexcept = default; + TTempBufOutput& operator=(TTempBufOutput&&) noexcept = default; protected: void DoWrite(const void* data, size_t len) override; |