Constructor
| 30 | |
| 31 | // Constructor |
| 32 | MemoryManager::MemoryManager(MemoryAllocator* baseAllocator, size_t initAllocatedMemory) : |
| 33 | mBaseAllocator(baseAllocator == nullptr ? &mDefaultAllocator : baseAllocator), |
| 34 | mHeapAllocator(*mBaseAllocator, initAllocatedMemory), |
| 35 | mPoolAllocator(mHeapAllocator), |
| 36 | mSingleFrameAllocator(mHeapAllocator) { |
| 37 | |
| 38 | } |
nothing calls this directly
no outgoing calls
no test coverage detected