From c77a123a8996b1dc71ca13b16202e41ecd54efdf Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Mon, 10 Sep 2018 14:43:04 +0200 Subject: [PATCH] Fixed #include for compilation under Windows mingw64. Issue #41 thanks @turol ! --- src/vk_mem_alloc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vk_mem_alloc.h b/src/vk_mem_alloc.h index e32b105..0335da6 100644 --- a/src/vk_mem_alloc.h +++ b/src/vk_mem_alloc.h @@ -1369,12 +1369,12 @@ available through VmaAllocatorCreateInfo::pRecordSettings. #endif #endif -#define NOMINMAX // For Windows.h +#define NOMINMAX // For windows.h #include #if VMA_RECORDING_ENABLED - #include + #include #endif #if !defined(VMA_DEDICATED_ALLOCATION)