1#include <Foundation/Memory/Policies/AllocPolicyGuarding.h>
3plAllocPolicyGuarding::plAllocPolicyGuarding(
plAllocator* pParent)
5 PL_ASSERT_NOT_IMPLEMENTED;
6 PL_IGNORE_UNUSED(m_uiPageSize);
7 PL_IGNORE_UNUSED(m_Mutex);
8 PL_IGNORE_UNUSED(m_AllocationsToFreeLater);
11void* plAllocPolicyGuarding::Allocate(
size_t uiSize,
size_t uiAlign)
13 PL_ASSERT_NOT_IMPLEMENTED;
17void plAllocPolicyGuarding::Deallocate(
void* ptr)
19 PL_ASSERT_NOT_IMPLEMENTED;
Base class for all memory allocators.
Definition Allocator.h:23