From 141f412d0f87090b584481514d37396cd3ef2f60 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 5 Sep 2015 17:46:04 +0000 Subject: [PATCH] [CMAKE/MSVC] C4200 doesn't look useful to us. svn path=/trunk/; revision=69036 --- reactos/cmake/msvc.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/cmake/msvc.cmake b/reactos/cmake/msvc.cmake index 50a74720f95..c112f615ccd 100644 --- a/reactos/cmake/msvc.cmake +++ b/reactos/cmake/msvc.cmake @@ -48,8 +48,8 @@ endif () # - C4244: implicit integer truncation # - C4290: C++ exception specification ignored # - C4800: forcing value to bool 'true' or 'false' (performance warning) -#add_compile_flags("/wd4244 /wd4290 /wd4800 ") -add_compile_flags("/wd4244 /wd4290 /wd4800") +# - C4200: nonstandard extension used : zero-sized array in struct/union +add_compile_flags("/wd4244 /wd4290 /wd4800 /wd4200") # FIXME: Temporarily disable C4018 until we fix more of the others. CORE-10113 add_compile_flags("/wd4018")