We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6773fd1 commit 84bc8f0Copy full SHA for 84bc8f0
compiler/rustc_llvm/llvm-wrapper/SuppressLLVMWarnings.h
@@ -5,9 +5,9 @@
5
// to diagnose real problems when working on C++ code, so we suppress them.
6
7
#ifdef _MSC_VER
8
-#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.
9
#pragma warning(disable:4624) // 'xxx': destructor was implicitly defined as deleted
10
-#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
11
#endif
12
13
#endif // _rustc_llvm_SuppressLLVMWarnings_h
0 commit comments