pragma the warnings away
Some checks failed
eden-license / license-header (pull_request) Failing after 24s

i have literally no idea why the compile def did NOT work but alas

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-09-30 21:46:56 -04:00
parent c2930505ce
commit 1ff378b62c
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6

View file

@ -10,4 +10,12 @@
#define VMA_STATIC_VULKAN_FUNCTIONS 0
#define VMA_DYNAMIC_VULKAN_FUNCTIONS 1
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable : 4189 )
#endif
#include "vk_mem_alloc.h"
#ifdef _MSC_VER
#pragma warning( pop )
#endif