diff options
author | shakurov <shakurov@yandex-team.ru> | 2022-02-10 16:49:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:23 +0300 |
commit | 6750fac04a33847862ab7bfb19145f6f91207be6 (patch) | |
tree | 4ef07665d11f55d011c0cc9ea4b74d03390a5bdb /library/cpp/binsaver/mem_io.h | |
parent | eb4b8b8ee0d18f168ae14f4d88a6efe2498e0f78 (diff) | |
download | ydb-6750fac04a33847862ab7bfb19145f6f91207be6.tar.gz |
Restoring authorship annotation for <shakurov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/binsaver/mem_io.h')
-rw-r--r-- | library/cpp/binsaver/mem_io.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/binsaver/mem_io.h b/library/cpp/binsaver/mem_io.h index 2a9e36fe681..5b8696cc763 100644 --- a/library/cpp/binsaver/mem_io.h +++ b/library/cpp/binsaver/mem_io.h @@ -83,18 +83,18 @@ namespace NMemIoInternals { , ShrinkOnRead(shrinkOnRead) { Y_ASSERT(!data->empty()); - } + } ~THugeMemoryStream() override { } // keep gcc happy bool IsValid() const override { return true; - } + } bool IsFailed() const override { return false; } - + private: int WriteImpl(const void* userDataArg, int sizeArg) override { if (sizeArg == 0) |