aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/tempbuf.h
diff options
context:
space:
mode:
authorskalsin <skalsin@yandex-team.ru>2022-02-10 16:46:38 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:38 +0300
commit0ec5f3106fcb5e342ec13cdfad678bf4633580d5 (patch)
tree201e92c5c9e5d0123fc5f7be509649e36596dd0b /util/memory/tempbuf.h
parenta693106aae8a3a3c7236a4ae953058a9611d7a92 (diff)
downloadydb-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.h6
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));
}
};