diff options
author | skalsin <skalsin@yandex-team.ru> | 2022-02-10 16:46:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:39 +0300 |
commit | 5036b5f2122001f9aef8a0e4cd85440d73ea6b9f (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/memory/tempbuf.h | |
parent | 0ec5f3106fcb5e342ec13cdfad678bf4633580d5 (diff) | |
download | ydb-5036b5f2122001f9aef8a0e4cd85440d73ea6b9f.tar.gz |
Restoring authorship annotation for <skalsin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/memory/tempbuf.h')
-rw-r--r-- | util/memory/tempbuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/memory/tempbuf.h b/util/memory/tempbuf.h index ea8ce55ea6e..334670eb1e5 100644 --- a/util/memory/tempbuf.h +++ b/util/memory/tempbuf.h @@ -41,7 +41,7 @@ public: void Reset() noexcept; void SetPos(size_t off); - char* Proceed(size_t off); + char* Proceed(size_t off); void Append(const void* data, size_t len); Y_PURE_FUNCTION bool IsNull() const noexcept; @@ -97,7 +97,7 @@ public: return TypedSize(TTempBuf::Filled()); } - T* Proceed(size_t off) { - return (T*)TTempBuf::Proceed(RawSize(off)); + T* Proceed(size_t off) { + return (T*)TTempBuf::Proceed(RawSize(off)); } }; |