diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-09-03 16:11:37 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-09-03 16:11:37 +0000 |
commit | af7f1a1959eb888fb25ce32899bee94e794cac5f (patch) | |
tree | 57faa7f9245853a341842a24e9c4608937f84835 | |
parent | 7b5c6b8d86e9e836523f7e85f82c03cd985a04ea (diff) | |
download | bcm5719-llvm-af7f1a1959eb888fb25ce32899bee94e794cac5f.tar.gz bcm5719-llvm-af7f1a1959eb888fb25ce32899bee94e794cac5f.zip |
[cmake] Improve comment describing the C4245 warning. NFCI.
llvm-svn: 370772
-rw-r--r-- | llvm/cmake/modules/HandleLLVMOptions.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake index e55bcab6e03..fa92b7452a5 100644 --- a/llvm/cmake/modules/HandleLLVMOptions.cmake +++ b/llvm/cmake/modules/HandleLLVMOptions.cmake @@ -523,7 +523,7 @@ if (MSVC) -wd4610 # Suppress '<class> can never be instantiated' -wd4510 # Suppress 'default constructor could not be generated' -wd4702 # Suppress 'unreachable code' - -wd4245 # Suppress 'signed/unsigned mismatch' + -wd4245 # Suppress ''conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch' -wd4706 # Suppress 'assignment within conditional expression' -wd4310 # Suppress 'cast truncates constant value' -wd4701 # Suppress 'potentially uninitialized local variable' |