diff options
author | kerzum <[email protected]> | 2022-02-10 16:49:33 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:33 +0300 |
commit | 47a7e7b29636bfb2deb1df5f92363b3c75229c95 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/memory/tempbuf.h | |
parent | 9a7232babfd763ccfe827bc70e82e0f50cfd8276 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 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 315c30ed869..334670eb1e5 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)); } -}; +}; |