summaryrefslogtreecommitdiffstats
path: root/util/memory
diff options
context:
space:
mode:
authormirzman <[email protected]>2022-02-10 16:52:10 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:52:10 +0300
commit4fba99cfbef3a7ab3e33b32101302b45b0a0c862 (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb /util/memory
parent1a553147fa5f387f8815c21a8617f19e74e8cbb8 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/memory')
-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 47156b25106..13c8b6b9ede 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);
}