utils: fix typo

This commit is contained in:
Dirk-Jan C. Binnema
2026-01-28 15:39:14 +02:00
committed by Seth Ladygo
parent ab6017d5a9
commit 85f4a4b80a

View File

@ -710,9 +710,9 @@ template<EnumBitmap Enum> constexpr bool any_of(Enum e) {
template<EnumBitmap Enum> constexpr bool none_of(Enum e) { template<EnumBitmap Enum> constexpr bool none_of(Enum e) {
return to_ut(e) == 0; return to_ut(e) == 0;
} }
// macro to enable bitops for the enum-class enums
#define MU_ENABLE_BITOPS(Enum) \ #define MU_ENABLE_BITOPS(Enum) \
template<> \c template<> \
struct enable_bitops<Enum> { \ struct enable_bitops<Enum> { \
static constexpr bool enable = true; \ static constexpr bool enable = true; \
} }