Fix over a hundred thousand warnings by:
[reactos.git] / reactos / cmake / msvc.cmake
index c112f61..5359517 100644 (file)
@@ -49,7 +49,8 @@ endif ()
 # - C4290: C++ exception specification ignored
 # - C4800: forcing value to bool 'true' or 'false' (performance warning)
 # - C4200: nonstandard extension used : zero-sized array in struct/union
-add_compile_flags("/wd4244 /wd4290 /wd4800 /wd4200")
+# - C4214: nonstandard extension used : bit field types other than int
+add_compile_flags("/wd4244 /wd4290 /wd4800 /wd4200 /wd4214")
 
 # FIXME: Temporarily disable C4018 until we fix more of the others. CORE-10113
 add_compile_flags("/wd4018")