mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
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
@ -9380,8 +9380,8 @@ VmaBlockVector::VmaBlockVector(
|
||||
m_IsCustomPool(isCustomPool),
|
||||
m_ExplicitBlockSize(explicitBlockSize),
|
||||
m_LinearAlgorithm(linearAlgorithm),
|
||||
m_Blocks(VmaStlAllocator<VmaDeviceMemoryBlock*>(hAllocator->GetAllocationCallbacks())),
|
||||
m_HasEmptyBlock(false),
|
||||
m_Blocks(VmaStlAllocator<VmaDeviceMemoryBlock*>(hAllocator->GetAllocationCallbacks())),
|
||||
m_pDefragmentator(VMA_NULL),
|
||||
m_NextBlockId(0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user