diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-01-03 00:00:40 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-01-03 00:00:40 +0000 |
commit | 189ef5f2e0a0d1c87691f81565b348136fb5c32d (patch) | |
tree | 66efe779f94ab0acd6a47bfaea8df2b1493803a5 | |
parent | 00a6bcaeb4a74b930bc2b21f8021c3358d507ecf (diff) | |
download | external_llvm-189ef5f2e0a0d1c87691f81565b348136fb5c32d.zip external_llvm-189ef5f2e0a0d1c87691f81565b348136fb5c32d.tar.gz external_llvm-189ef5f2e0a0d1c87691f81565b348136fb5c32d.tar.bz2 |
[CMake] MSVC is incorrectly emitting C4239 in some cases. Disable it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171430 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | cmake/modules/HandleLLVMOptions.cmake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake index 61e3fb0..711fe96 100644 --- a/cmake/modules/HandleLLVMOptions.cmake +++ b/cmake/modules/HandleLLVMOptions.cmake @@ -176,7 +176,6 @@ if( MSVC ) # Promoted warnings to errors. -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error. - -we4239 # Promote 'nonstandard extension used : 'token' : conversion from 'type' to 'type'' to error. ) # Enable warnings |