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 | 1a553147fa5f387f8815c21a8617f19e74e8cbb8 (patch) | |
tree | 4d41acad350869fc9dc85095e5ef93bbfb02b77c /util/memory/pool.h | |
parent | 9bbc43ba394b5d61db53fdbd89715e81b6dfbf41 (diff) | |
download | ydb-1a553147fa5f387f8815c21a8617f19e74e8cbb8.tar.gz |
Restoring authorship annotation for <mirzman@yandex-team.ru>. Commit 1 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 13c8b6b9ed..47156b2510 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); } |