From 228745147469fd18787a4fd4b96033ad1b157aa7 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Mon, 21 Sep 2026 14:47:52 +1000 Subject: [PATCH] PageFaultHandler: Fix unused variable warning --- src/util/page_fault_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/page_fault_handler.cpp b/src/util/page_fault_handler.cpp index 45841f1c7..69d80d18b 100644 --- a/src/util/page_fault_handler.cpp +++ b/src/util/page_fault_handler.cpp @@ -30,7 +30,7 @@ #endif #ifdef CPU_ARCH_ARM64 -static constexpr u64 ARM64_ESR_ISS_DA_WNR = (1u << 6); +[[maybe_unused]] static constexpr u64 ARM64_ESR_ISS_DA_WNR = (1u << 6); [[maybe_unused]] static bool IsStoreInstruction(const void* ptr) {