diff options
| author | mirzman <[email protected]> | 2022-02-10 16:52:10 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:10 +0300 | 
| commit | 1a553147fa5f387f8815c21a8617f19e74e8cbb8 (patch) | |
| tree | 4d41acad350869fc9dc85095e5ef93bbfb02b77c | |
| parent | 9bbc43ba394b5d61db53fdbd89715e81b6dfbf41 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
| -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 13c8b6b9ede..47156b25106 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);      } | 
