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 | 47a7e7b29636bfb2deb1df5f92363b3c75229c95 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/memory | |
parent | 9a7232babfd763ccfe827bc70e82e0f50cfd8276 (diff) | |
download | ydb-47a7e7b29636bfb2deb1df5f92363b3c75229c95.tar.gz |
Restoring authorship annotation for <kerzum@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/memory')
-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 315c30ed86..334670eb1e 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)); } -}; +}; |