Re-enabling some more MSVC warnings; all of these compile cleanly with no further...
authorAaron Ballman <aaron@aaronballman.com>
Sat, 27 Jul 2013 20:20:28 +0000 (20:20 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Sat, 27 Jul 2013 20:20:28 +0000 (20:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187310 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/modules/HandleLLVMOptions.cmake

index 656321f0dec7f284ab874b204ddc23cedf9b8869..ccd8c819ad228b4fdbd93efbe009ad271e656a40 100644 (file)
@@ -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'