From af51845a53108f9bf076efa31eac54573fe432e8 Mon Sep 17 00:00:00 2001 From: Merry Date: Fri, 2 Sep 2022 21:15:50 +0100 Subject: [PATCH] decoder_detail: Workaround #708 --- src/dynarmic/frontend/decoder/decoder_detail.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dynarmic/frontend/decoder/decoder_detail.h b/src/dynarmic/frontend/decoder/decoder_detail.h index ae5062b5..a82e1041 100644 --- a/src/dynarmic/frontend/decoder/decoder_detail.h +++ b/src/dynarmic/frontend/decoder/decoder_detail.h @@ -42,7 +42,7 @@ struct detail { * A '0' in a bitstring indicates that a zero must be present at that bit position. * A '1' in a bitstring indicates that a one must be present at that bit position. */ -#ifdef __APPLE__ // AppleClang workaround +#ifdef __clang__ static constexpr auto GetMaskAndExpect(std::array bitstring) { #else static consteval auto GetMaskAndExpect(std::array bitstring) {