mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
11 lines
252 B
C++
11 lines
252 B
C++
|
/**
|
||
|
* This file provides forward declarations for Allocator.
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
template <bool clear_memory_, bool mmap_populate = false>
|
||
|
class Allocator;
|
||
|
|
||
|
template <typename Base, size_t N = 64, size_t Alignment = 1>
|
||
|
class AllocatorWithStackMemory;
|