Fixes warning: field 'm_Blocks' will be initialized after field 'm_HasEmptyBlock' [-Wreorder]

This commit is contained in:
TheLavaBlock 2018-08-28 12:58:42 +02:00
parent c7d1b584b7
commit 483acccff1

View File

@ -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)
{ {