summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2026-01-28 15:39:14 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2026-01-28 15:39:14 +0200
commit7585a957883cb9354fbaa62527b89ef90d777a26 (patch)
treee1ea93b91e4b31c74cef664ae84174b5acd654ca /lib
parentf21dbeab19488b61da11ecd22dccbf0f73662df3 (diff)
utils: fix typo
Diffstat (limited to 'lib')
-rw-r--r--lib/utils/mu-utils.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils/mu-utils.hh b/lib/utils/mu-utils.hh
index a1c8979..3b6f45a 100644
--- a/lib/utils/mu-utils.hh
+++ b/lib/utils/mu-utils.hh
@@ -710,9 +710,9 @@ template<EnumBitmap Enum> constexpr bool any_of(Enum e) {
template<EnumBitmap Enum> 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<Enum> { \
static constexpr bool enable = true; \
}