| 11 | { |
| 12 | |
| 13 | void MemoryManager::StoreMemToAllocate(std::vector<BufferStorage> bufferStorageVector, |
| 14 | std::shared_ptr<ICustomAllocator> customAllocator, |
| 15 | const size_t typeAlignment) |
| 16 | { |
| 17 | IgnoreUnused(typeAlignment); |
| 18 | m_AllocatorBufferStoragePairVector.emplace_back(std::make_pair<Allocator, std::vector<BufferStorage>>( |
| 19 | Allocator{customAllocator}, |
| 20 | std::move(bufferStorageVector))); |
| 21 | } |
| 22 | |
| 23 | void MemoryManager::Allocate() |
| 24 | { |
no test coverage detected