Disable warning 4668 which triggers in windows headers.

This commit is contained in:
Rojo
2024-08-16 12:51:56 -08:00
parent 31aaf7c6d0
commit 71c3e043d4

View File

@@ -621,7 +621,7 @@
#if defined(_MSC_VER)
#define EA_DISABLE_ALL_VC_WARNINGS() \
__pragma(warning(push, 0)) \
__pragma(warning(disable: 4244 4265 4267 4350 4472 4509 4548 4623 4710 4985 6320 4755 4625 4626 4702)) // Some warnings need to be explicitly called out.
__pragma(warning(disable: 4244 4265 4267 4350 4472 4509 4548 4623 4710 4985 6320 4755 4625 4626 4702 4668)) // Some warnings need to be explicitly called out.
#else
#define EA_DISABLE_ALL_VC_WARNINGS()
#endif