Add nifty counter instance to MmAllocaator

Prevents exit crashes in rare cases e.g. when Engine is not destroyed
This commit is contained in:
Lukas W
2020-05-06 15:08:48 +02:00
parent 1cd8b7a895
commit 29df871800

View File

@@ -75,6 +75,7 @@ public:
typedef std::vector<T, MmAllocator<T> > vector;
private:
MemoryManager::MmCounter m_counter;
MemoryManager::ThreadGuard m_threadGuard;
};