Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix long lines
  • Loading branch information
sivadeilra committed Nov 22, 2023
commit 84bc8f037afa470232b3171c5e547744c322be2b
4 changes: 2 additions & 2 deletions compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h
Original file line number Diff line number Diff line change
Expand Up @@ -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