10 lines
456 B
C
10 lines
456 B
C
#pragma once
|
|
|
|
#include <foonathan/memory/memory_arena.hpp>
|
|
#include <foonathan/memory/memory_stack.hpp>
|
|
#include <foonathan/memory/temporary_allocator.hpp>
|
|
|
|
using global_allocator_t = foonathan::memory::memory_stack<foonathan::memory::virtual_block_allocator>;
|
|
|
|
using subsystem_allocator_t = foonathan::memory::memory_stack<foonathan::memory::fixed_block_allocator<global_allocator_t>>;
|
|
using temporary_allocator_t = foonathan::memory::temporary_allocator; |