diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2013-08-16 03:06:38 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2013-08-16 03:06:38 +0000 |
| commit | 99ea29149498c53e4443f223704cde5e906780bb (patch) | |
| tree | ca5e0ee0f73dd52d7679f0ddeb5ba907ed287814 /llvm/cmake/modules | |
| parent | b06951bc19c54ed75ebf9d2eceb00ac56ea1beee (diff) | |
| download | bcm5719-llvm-99ea29149498c53e4443f223704cde5e906780bb.tar.gz bcm5719-llvm-99ea29149498c53e4443f223704cde5e906780bb.zip | |
Re-disabling C4291 warnings for MSVC because AttributeList.h requires it. This was accidentally removed in r187279.
llvm-svn: 188530
Diffstat (limited to 'llvm/cmake/modules')
| -rw-r--r-- | llvm/cmake/modules/HandleLLVMOptions.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake index 58ffb8db515..b49d6496125 100644 --- a/llvm/cmake/modules/HandleLLVMOptions.cmake +++ b/llvm/cmake/modules/HandleLLVMOptions.cmake @@ -182,6 +182,7 @@ if( MSVC ) -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated' -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)' + -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception' # Promoted warnings. -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning. |

