diff options
author | kerzum <kerzum@yandex-team.ru> | 2022-02-10 16:49:33 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:33 +0300 |
commit | 9a7232babfd763ccfe827bc70e82e0f50cfd8276 (patch) | |
tree | a39808b7482c4711a80f799a7281adb36d76a13a /util/memory/tempbuf.h | |
parent | 0e68ae909d3b76a5a001a07880eb0010dec6b2ea (diff) | |
download | ydb-9a7232babfd763ccfe827bc70e82e0f50cfd8276.tar.gz |
Restoring authorship annotation for <kerzum@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/memory/tempbuf.h')
-rw-r--r-- | util/memory/tempbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/memory/tempbuf.h b/util/memory/tempbuf.h index 334670eb1e..315c30ed86 100644 --- a/util/memory/tempbuf.h +++ b/util/memory/tempbuf.h @@ -51,7 +51,7 @@ private: }; template <typename T> -class TTempArray: private TTempBuf { +class TTempArray: private TTempBuf { private: static T* TypedPointer(char* pointer) noexcept { return reinterpret_cast<T*>(pointer); @@ -100,4 +100,4 @@ public: T* Proceed(size_t off) { return (T*)TTempBuf::Proceed(RawSize(off)); } -}; +}; |