From b41615cfce1bc895b3ead88baa69c7ca345def51 Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Thu, 17 Feb 2022 11:08:30 +0100 Subject: [PATCH] Added missing #include Fixes #237 --- include/vk_mem_alloc.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/vk_mem_alloc.h b/include/vk_mem_alloc.h index 65d70ca..11e5817 100644 --- a/include/vk_mem_alloc.h +++ b/include/vk_mem_alloc.h @@ -2489,6 +2489,10 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString( #include #include +#ifdef _MSC_VER + #include // For functions like __popcnt, _BitScanForward etc. +#endif + /******************************************************************************* CONFIGURATION SECTION