Prechádzať zdrojové kódy

Disable warning 4668 which triggers in windows headers.

Rojo 1 rok pred
rodič
commit
71c3e043d4
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      include/Common/EABase/config/eacompiler.h

+ 1 - 1
include/Common/EABase/config/eacompiler.h

@@ -621,7 +621,7 @@
 		#if defined(_MSC_VER)
 		#if defined(_MSC_VER)
 			#define EA_DISABLE_ALL_VC_WARNINGS()  \
 			#define EA_DISABLE_ALL_VC_WARNINGS()  \
 				__pragma(warning(push, 0)) \
 				__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
 		#else
 			#define EA_DISABLE_ALL_VC_WARNINGS()
 			#define EA_DISABLE_ALL_VC_WARNINGS()
 		#endif
 		#endif