diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-01-25 14:12:13 +0000 |
---|---|---|
committer | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-01-25 14:12:13 +0000 |
commit | 43348210f95d5d66ba0bcd5022db4af2c4ec4b7e (patch) | |
tree | cc76a5379d829a892763afee8fe60a1de53984db /src/ARMJIT.cpp | |
parent | b9a56bc4e47bbb315f88ba5eaa57ce2b3efece73 (diff) |
Fix some compiler warnings
Diffstat (limited to 'src/ARMJIT.cpp')
-rw-r--r-- | src/ARMJIT.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ARMJIT.cpp b/src/ARMJIT.cpp index bece539..7e12385 100644 --- a/src/ARMJIT.cpp +++ b/src/ARMJIT.cpp @@ -26,9 +26,9 @@ #include "NDSCart.h" #include "ARMJIT_x64/ARMJIT_Offsets.h" -static_assert(offsetof(ARM, CPSR) == ARM_CPSR_offset); -static_assert(offsetof(ARM, Cycles) == ARM_Cycles_offset); -static_assert(offsetof(ARM, StopExecution) == ARM_StopExecution_offset); +static_assert(offsetof(ARM, CPSR) == ARM_CPSR_offset, ""); +static_assert(offsetof(ARM, Cycles) == ARM_Cycles_offset, ""); +static_assert(offsetof(ARM, StopExecution) == ARM_StopExecution_offset, ""); namespace ARMJIT { |