From fa77c8bd7188a3bc302fc172bbeeb2c2252d741b Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 5 Sep 2015 17:31:51 +0000 Subject: [PATCH] [CMAKE/MSVC] Temporarily disable C4018 until we fix more of the others. CORE-10113 svn path=/trunk/; revision=69034 --- reactos/cmake/msvc.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/cmake/msvc.cmake b/reactos/cmake/msvc.cmake index 59cbfa9e55c..50a74720f95 100644 --- a/reactos/cmake/msvc.cmake +++ b/reactos/cmake/msvc.cmake @@ -51,6 +51,9 @@ endif () #add_compile_flags("/wd4244 /wd4290 /wd4800 ") add_compile_flags("/wd4244 /wd4290 /wd4800") +# FIXME: Temporarily disable C4018 until we fix more of the others. CORE-10113 +add_compile_flags("/wd4018") + # The following warnings are treated as errors: # - C4013: implicit function declaration # - C4020: too many actual parameters