diff options
author | mirzman <mirzman@yandex-team.ru> | 2022-02-10 16:52:10 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:10 +0300 |
commit | 4fba99cfbef3a7ab3e33b32101302b45b0a0c862 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/memory/pool.h | |
parent | 1a553147fa5f387f8815c21a8617f19e74e8cbb8 (diff) | |
download | ydb-4fba99cfbef3a7ab3e33b32101302b45b0a0c862.tar.gz |
Restoring authorship annotation for <mirzman@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/memory/pool.h')
-rw-r--r-- | util/memory/pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/memory/pool.h b/util/memory/pool.h index 47156b2510..13c8b6b9ed 100644 --- a/util/memory/pool.h +++ b/util/memory/pool.h @@ -150,7 +150,7 @@ public: inline void* Allocate(size_t len) { return RawAllocate(AlignUp<size_t>(len, PLATFORM_DATA_ALIGN)); } - + inline void* Allocate(size_t len, size_t align) { return RawAllocate(AlignUp<size_t>(len, PLATFORM_DATA_ALIGN), align); } |