Plasma Engine  2.0
Loading...
Searching...
No Matches
GuardedAllocation_NoImpl.h
1#include <Foundation/Memory/Policies/AllocPolicyGuarding.h>
2
3plAllocPolicyGuarding::plAllocPolicyGuarding(plAllocator* pParent)
4{
5 PL_ASSERT_NOT_IMPLEMENTED;
6 PL_IGNORE_UNUSED(m_uiPageSize);
7 PL_IGNORE_UNUSED(m_Mutex);
8 PL_IGNORE_UNUSED(m_AllocationsToFreeLater);
9}
10
11void* plAllocPolicyGuarding::Allocate(size_t uiSize, size_t uiAlign)
12{
13 PL_ASSERT_NOT_IMPLEMENTED;
14 return nullptr;
15}
16
17void plAllocPolicyGuarding::Deallocate(void* ptr)
18{
19 PL_ASSERT_NOT_IMPLEMENTED;
20}
Base class for all memory allocators.
Definition Allocator.h:23