[llvm] r187310 - Re-enabling some more MSVC warnings; all of these compile cleanly with no further changes required.

Aaron Ballman aaron at aaronballman.com
Sat Jul 27 13:20:28 PDT 2013


Author: aaronballman
Date: Sat Jul 27 15:20:28 2013
New Revision: 187310

URL: http://llvm.org/viewvc/llvm-project?rev=187310&view=rev
Log:
Re-enabling some more MSVC warnings; all of these compile cleanly with no further changes required.

Modified:
    llvm/trunk/cmake/modules/HandleLLVMOptions.cmake

Modified: llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/HandleLLVMOptions.cmake?rev=187310&r1=187309&r2=187310&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/HandleLLVMOptions.cmake (original)
+++ llvm/trunk/cmake/modules/HandleLLVMOptions.cmake Sat Jul 27 15:20:28 2013
@@ -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'





More information about the llvm-commits mailing list