We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cdd3ee + b9cf712 commit 6d38cb2Copy full SHA for 6d38cb2
jbmc/src/miniz/miniz.cpp
@@ -28,10 +28,21 @@
28
// clang-format off
29
30
#ifdef _MSC_VER
31
+// conversion warnings
32
+#pragma warning(disable:4242)
33
+// possible loss of data
34
+#pragma warning(disable:4244)
35
36
+#pragma warning(disable:4365)
37
+// signed/unsigned mismatch
38
#pragma warning(disable:4548)
- // expression before comma has no effect
39
+// expression before comma has no effect
40
#pragma warning(disable:4061)
- // enum case is not handled in switch
41
+// enum case is not handled in switch
42
+#pragma warning(disable:4334)
43
+// result of 32-bit shift implicitly converted to 64 bits
44
+#pragma warning(disable:5039)
45
+// pointer or reference to potentially throwing function passed to extern C
46
#endif
47
48
#include "miniz.h"
0 commit comments