diff --git a/src/memory/MemoryManager.h b/src/memory/MemoryManager.h index ae8d4f3e..9335c074 100644 --- a/src/memory/MemoryManager.h +++ b/src/memory/MemoryManager.h @@ -88,9 +88,6 @@ class MemoryManager { /// Return the base memory allocator MemoryAllocator& getBaseAllocator(); - /// Set the base memory allocator - void setBaseAllocator(MemoryAllocator* memoryAllocator); - /// Reset the single frame allocator void resetFrameAllocator(); }; @@ -132,11 +129,6 @@ inline MemoryAllocator& MemoryManager::getBaseAllocator() { return *mBaseAllocator; } -// Set the base memory allocator -inline void MemoryManager::setBaseAllocator(MemoryAllocator* baseAllocator) { - mBaseAllocator = baseAllocator; -} - // Reset the single frame allocator inline void MemoryManager::resetFrameAllocator() { mSingleFrameAllocator.reset();