summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2013-07-27 20:20:28 +0000
committerAaron Ballman <aaron@aaronballman.com>2013-07-27 20:20:28 +0000
commit9df33cbbab9e11fd4528566c7b4f303ac1d99ead (patch)
treebd06c5673cb109893be9a3ba932b0dde9ce466e8 /cmake
parentfe655dc15598ebd4c8077e4a67914e7f233e0774 (diff)
downloadllvm-9df33cbbab9e11fd4528566c7b4f303ac1d99ead.tar.gz
llvm-9df33cbbab9e11fd4528566c7b4f303ac1d99ead.tar.bz2
llvm-9df33cbbab9e11fd4528566c7b4f303ac1d99ead.tar.xz
Re-enabling some more MSVC warnings; all of these compile cleanly with no further changes required.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187310 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/HandleLLVMOptions.cmake2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake
index 656321f0de..ccd8c819ad 100644
--- a/cmake/modules/HandleLLVMOptions.cmake
+++ b/cmake/modules/HandleLLVMOptions.cmake
@@ -168,10 +168,8 @@ if( MSVC )
# Disabled warnings.
-wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
-wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
- -wd4181 # Suppress 'qualifier applied to reference type; ignored'
-wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
-wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
- -wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
-wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
-wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
-wd4355 # Suppress ''this' : used in base member initializer list'