From 631dca55f8765550a637bb70deaa6ed94c76b988 Mon Sep 17 00:00:00 2001 From: lizzie Date: Sun, 3 May 2026 21:04:59 +0000 Subject: [PATCH] fuck debain --- src/dynarmic/src/dynarmic/frontend/decoder/decoder_detail.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dynarmic/src/dynarmic/frontend/decoder/decoder_detail.h b/src/dynarmic/src/dynarmic/frontend/decoder/decoder_detail.h index 032bebb705..e383fb0262 100644 --- a/src/dynarmic/src/dynarmic/frontend/decoder/decoder_detail.h +++ b/src/dynarmic/src/dynarmic/frontend/decoder/decoder_detail.h @@ -108,7 +108,7 @@ struct detail { template struct VisitorCaller { template - static inline constexpr auto Invoke(std::index_sequence, V& visitor, opcode_type instruction, ReturnType (V::*const fn)(Args...), const std::array arg_masks, const std::array arg_shifts) { + static inline constexpr auto Invoke(std::index_sequence, V& visitor, [[maybe_unused]] opcode_type instruction, ReturnType (V::*const fn)(Args...), [[maybe_unused]] const std::array arg_masks, [[maybe_unused]] const std::array arg_shifts) { return (visitor.*fn)(Args((instruction & arg_masks[iota]) >> arg_shifts[iota])...); } }; @@ -117,7 +117,7 @@ struct detail { #endif template - static inline constexpr auto GetMatcherFunction(V& visitor, opcode_type instruction, ReturnType (V::*const fn)(Args...)) { + static inline constexpr auto GetMatcherFunction(V& visitor, [[maybe_unused]] opcode_type instruction, ReturnType (V::*const fn)(Args...)) { constexpr auto arg_masks = std::get<0>(GetArgInfo(bitstring)); constexpr auto arg_shifts = std::get<1>(GetArgInfo(bitstring)); return VisitorCaller::Invoke(std::index_sequence_for(), visitor, instruction, fn, arg_masks, arg_shifts);