We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ba8388 commit aa2ab41Copy full SHA for aa2ab41
1 file changed
arch/arm64/disassembler/decode_scratchpad.c
@@ -4,6 +4,12 @@
4
#include <stdint.h>
5
#include <string.h>
6
7
+#if defined(_MSC_VER)
8
+// Disable warning: Unary minus operator applied to unsigned type, result still unsigned.
9
+// This warning is treated as an error with the /sdl flag.
10
+#pragma warning(disable:4146)
11
+#endif
12
+
13
//-----------------------------------------------------------------------------
14
// registers
15
0 commit comments