diff --git a/src/frontend/A64/imm.h b/src/frontend/A64/imm.h index a287dea0..609afc5d 100644 --- a/src/frontend/A64/imm.h +++ b/src/frontend/A64/imm.h @@ -86,7 +86,7 @@ bool operator!=(const Imm& a, u32 b) { * This is equivalent to a:b:...:z in ASL. */ template -auto concatenate(Imm first, Imm ...rest) -> Imm { +auto concatenate(Imm first, Imm ...rest) { if constexpr (sizeof...(rest) == 0) { return first; } else {