aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/pool.h
diff options
context:
space:
mode:
authormirzman <mirzman@yandex-team.ru>2022-02-10 16:52:10 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:52:10 +0300
commit4fba99cfbef3a7ab3e33b32101302b45b0a0c862 (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb /util/memory/pool.h
parent1a553147fa5f387f8815c21a8617f19e74e8cbb8 (diff)
downloadydb-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.h2
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);
}