From 43348210f95d5d66ba0bcd5022db4af2c4ec4b7e Mon Sep 17 00:00:00 2001 From: WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> Date: Mon, 25 Jan 2021 14:12:13 +0000 Subject: Fix some compiler warnings --- src/ARMJIT.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ARMJIT.cpp') 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 { -- cgit v1.2.3