Skip to content
Merged
Changes from all commits
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
6 changes: 6 additions & 0 deletions arch/arm64/disassembler/decode_scratchpad.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
#include <stdint.h>
#include <string.h>

#if defined(_MSC_VER)
// Disable warning: Unary minus operator applied to unsigned type, result still unsigned.
// This warning is treated as an error with the /sdl flag.
#pragma warning(disable:4146)
#endif

//-----------------------------------------------------------------------------
// registers
//-----------------------------------------------------------------------------
Expand Down