From 46af314bd96a9d1e267698df5c074dd4fc4cc6e2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 21 Dec 2015 14:54:36 +1100 Subject: [PATCH] CMake: disable warning 4146 This is warning on noisy (false positives). --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 354e4adb0d7..14248d6da3a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2738,6 +2738,7 @@ elseif(CMAKE_C_COMPILER_ID MATCHES "MSVC") "/w34062" # switch statement contains 'default' but no 'case' labels # disable: "/wd4018" # signed/unsigned mismatch + "/wd4146" # unary minus operator applied to unsigned type, result still unsigned "/wd4065" # switch statement contains 'default' but no 'case' labels "/wd4127" # conditional expression is constant "/wd4181" # qualifier applied to reference type; ignored