diff options
| author | Arlie Davis <ardavis@microsoft.com> | 2023-11-22 10:17:50 -0800 |
|---|---|---|
| committer | Arlie Davis <ardavis@microsoft.com> | 2023-11-22 10:17:50 -0800 |
| commit | 84bc8f037afa470232b3171c5e547744c322be2b (patch) | |
| tree | c6f4bf12dd9e90037768a400c6b009cce2a4aad7 | |
| parent | 6773fd1a9a9aae8da53596e15eb2098e0efbb9a2 (diff) | |
| download | rust-84bc8f037afa470232b3171c5e547744c322be2b.tar.gz rust-84bc8f037afa470232b3171c5e547744c322be2b.zip | |
fix long lines
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h b/compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h index 74cd024ca22..56964e4eaa7 100644 --- a/compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h +++ b/compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h @@ -5,9 +5,9 @@ // to diagnose real problems when working on C++ code, so we suppress them. #ifdef _MSC_VER -#pragma warning(disable:4530) // C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc +#pragma warning(disable:4530) // C++ exception handler used, but unwind semantics are not enabled. #pragma warning(disable:4624) // 'xxx': destructor was implicitly defined as deleted -#pragma warning(disable:4244) // 'initializing': conversion from 'xxx' to 'yyy', possible loss of data +#pragma warning(disable:4244) // conversion from 'xxx' to 'yyy', possible loss of data #endif #endif // _rustc_llvm_SuppressLLVMWarnings_h |
