Fix initialization order warning
diff --git a/src/D3D12MemAlloc.cpp b/src/D3D12MemAlloc.cpp
index f83ee32..a1ad5aa 100644
--- a/src/D3D12MemAlloc.cpp
+++ b/src/D3D12MemAlloc.cpp
@@ -2795,7 +2795,7 @@
     D3D12MA_CLASS_NO_COPY(AllocationObjectAllocator);

 public:

     AllocationObjectAllocator(const ALLOCATION_CALLBACKS& allocationCallbacks, bool useMutex)

-        : m_Allocator(allocationCallbacks, 1024), m_UseMutex(useMutex) {}

+		: m_UseMutex(useMutex), m_Allocator(allocationCallbacks, 1024) {}

 

     template<typename... Types>

     Allocation* Allocate(Types... args);