File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 28
28
// clang-format off
29
29
30
30
#ifdef _MSC_VER
31
+ // conversion warnings
32
+ #pragma warning(disable:4242)
33
+ // possible loss of data
34
+ #pragma warning(disable:4244)
35
+ // possible loss of data
36
+ #pragma warning(disable:4365)
37
+ // signed/unsigned mismatch
31
38
#pragma warning(disable:4548)
32
- // expression before comma has no effect
39
+ // expression before comma has no effect
33
40
#pragma warning(disable:4061)
34
- // 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
35
46
#endif
36
47
37
48
#include " miniz.h"
You can’t perform that action at this time.
0 commit comments