From 6436940e385a6db42abf807c7d758a09f8ff16d7 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Sat, 27 Jul 2013 03:35:44 +0000 Subject: [PATCH] Re-enabling a warning in MSVC mode now that r187292 fixed the only instance of the warning. llvm-svn: 187293 --- llvm/cmake/modules/HandleLLVMOptions.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake index 03b1578..656321f 100644 --- a/llvm/cmake/modules/HandleLLVMOptions.cmake +++ b/llvm/cmake/modules/HandleLLVMOptions.cmake @@ -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)' -- 2.7.4