diff options
author | skalsin <skalsin@yandex-team.ru> | 2022-02-10 16:46:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:38 +0300 |
commit | 0ec5f3106fcb5e342ec13cdfad678bf4633580d5 (patch) | |
tree | 201e92c5c9e5d0123fc5f7be509649e36596dd0b /util/memory/tempbuf.h | |
parent | a693106aae8a3a3c7236a4ae953058a9611d7a92 (diff) | |
download | ydb-0ec5f3106fcb5e342ec13cdfad678bf4633580d5.tar.gz |
Restoring authorship annotation for <skalsin@yandex-team.ru>. Commit 1 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 334670eb1e..ea8ce55ea6 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)); } }; |