[llvm] r187293 - Re-enabling a warning in MSVC mode now that r187292 fixed the only instance of the warning.

Aaron Ballman aaron at aaronballman.com
Fri Jul 26 20:35:44 PDT 2013


Author: aaronballman
Date: Fri Jul 26 22:35:44 2013
New Revision: 187293

URL: http://llvm.org/viewvc/llvm-project?rev=187293&view=rev
Log:
Re-enabling a warning in MSVC mode now that r187292 fixed the only instance of the warning.

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=187293&r1=187292&r2=187293&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/HandleLLVMOptions.cmake (original)
+++ llvm/trunk/cmake/modules/HandleLLVMOptions.cmake Fri Jul 26 22:35:44 2013
@@ -176,7 +176,6 @@ if( MSVC )
     -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
     -wd4355 # Suppress ''this' : used in base member initializer list'
     -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
-    -wd4551 # Suppress 'function call missing argument list'
     -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
     -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
 





More information about the llvm-commits mailing list