aboutsummaryrefslogtreecommitdiff
path: root/src/ARMJIT.cpp
diff options
context:
space:
mode:
authorWaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com>2021-01-25 14:12:13 +0000
committerWaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com>2021-01-25 14:12:13 +0000
commit43348210f95d5d66ba0bcd5022db4af2c4ec4b7e (patch)
treecc76a5379d829a892763afee8fe60a1de53984db /src/ARMJIT.cpp
parentb9a56bc4e47bbb315f88ba5eaa57ce2b3efece73 (diff)
Fix some compiler warnings
Diffstat (limited to 'src/ARMJIT.cpp')
-rw-r--r--src/ARMJIT.cpp6
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
{