Fixes warning: field 'm_Blocks' will be initialized after field 'm_HasEmptyBlock' [-Wreorder] #37 Thanks @TheLavaBlock !
This commit is contained in:
parent
c7d1b584b7
commit
c4227e5acf
1 changed files with 1 additions and 1 deletions
|
@ -9380,8 +9380,8 @@ VmaBlockVector::VmaBlockVector(
|
||||||
m_IsCustomPool(isCustomPool),
|
m_IsCustomPool(isCustomPool),
|
||||||
m_ExplicitBlockSize(explicitBlockSize),
|
m_ExplicitBlockSize(explicitBlockSize),
|
||||||
m_LinearAlgorithm(linearAlgorithm),
|
m_LinearAlgorithm(linearAlgorithm),
|
||||||
m_Blocks(VmaStlAllocator<VmaDeviceMemoryBlock*>(hAllocator->GetAllocationCallbacks())),
|
|
||||||
m_HasEmptyBlock(false),
|
m_HasEmptyBlock(false),
|
||||||
|
m_Blocks(VmaStlAllocator<VmaDeviceMemoryBlock*>(hAllocator->GetAllocationCallbacks())),
|
||||||
m_pDefragmentator(VMA_NULL),
|
m_pDefragmentator(VMA_NULL),
|
||||||
m_NextBlockId(0)
|
m_NextBlockId(0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue