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; \ }