* Up the hard coded size for the HpAllocator buffer to 18KiB
Added a static assert in the HphaSchema.cpp file to validate that the
HpAllocator aligned storage buffer is at least the size of the
HpAllocator class.
Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com>
* Removed comment blocks with username from HphaSchema.h
Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com>
monroegm-disable-blank-issue-2
lumberyard-employee-dm4 years agocommitted byGitHub
AZ_Assert(sizeof(HpAllocator)<=sizeof(m_hpAllocatorBuffer),"Increase the m_hpAllocatorBuffer, we need %d bytes but we have %d bytes!",sizeof(HpAllocator),sizeof(m_hpAllocatorBuffer));
static_assert(sizeof(HpAllocator)<=sizeof(m_hpAllocatorBuffer),"Increase the m_hpAllocatorBuffer, it needs to be at least the sizeof(HpAllocator)");