mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 09:47:58 +03:00
8 lines
No EOL
222 B
C++
8 lines
No EOL
222 B
C++
#pragma once
|
|
#include "pool.h"
|
|
#include "PoolAllocator.h"
|
|
#include <vector>
|
|
namespace T5M::Memory {
|
|
using TGPool = Pool<BlockSize::Medium>;
|
|
template<typename T> using vector = std::vector <T, PoolAllocator<T, TGPool>>;
|
|
} |