1 | /** |
---|---|
2 | * This file provides forward declarations for Allocator. |
3 | */ |
4 | #pragma once |
5 | |
6 | template <bool clear_memory_, bool mmap_populate = false> |
7 | class Allocator; |
8 | |
9 | template <typename Base, size_t N = 64, size_t Alignment = 1> |
10 | class AllocatorWithStackMemory; |
11 |