summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/memory
diff options
context:
space:
mode:
authornadya73 <[email protected]>2022-02-10 16:49:18 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:18 +0300
commit883d905c560ebed4b7f38d021b424d75c4521a6f (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/yt/memory
parentb6e35c760e81fe851ac4da1abc08e6ec8e779c10 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yt/memory')
-rw-r--r--library/cpp/yt/memory/new-inl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/yt/memory/new-inl.h b/library/cpp/yt/memory/new-inl.h
index fea43ca64cc..0a848185167 100644
--- a/library/cpp/yt/memory/new-inl.h
+++ b/library/cpp/yt/memory/new-inl.h
@@ -103,11 +103,11 @@ Y_FORCE_INLINE void* AllignedMalloc(size_t size, size_t allignment)
#endif
}
-template <class... Args>
-Y_FORCE_INLINE void CustomInitialize(Args... args)
-{
- Y_UNUSED(args...);
-}
+template <class... Args>
+Y_FORCE_INLINE void CustomInitialize(Args... args)
+{
+ Y_UNUSED(args...);
+}
template <class T>
Y_FORCE_INLINE auto CustomInitialize(T* ptr) -> decltype(&T::InitializeRefCounted, void())