From 85f4a4b80a7b8e56ad3bdd1de57c8e0ff94741ef Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Wed, 28 Jan 2026 15:39:14 +0200 Subject: [PATCH] utils: fix typo --- lib/utils/mu-utils.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/mu-utils.hh b/lib/utils/mu-utils.hh index a1c8979a..3b6f45ab 100644 --- a/lib/utils/mu-utils.hh +++ b/lib/utils/mu-utils.hh @@ -710,9 +710,9 @@ template constexpr bool any_of(Enum e) { template constexpr bool none_of(Enum e) { return to_ut(e) == 0; } - +// macro to enable bitops for the enum-class enums #define MU_ENABLE_BITOPS(Enum) \ - template<> \c + template<> \ struct enable_bitops { \ static constexpr bool enable = true; \ }