mirror of
https://github.com/xenia-project/elemental-forms.git
synced 2026-01-31 01:25:17 +01:00
Lint fix.
This commit is contained in:
@@ -52,8 +52,8 @@ namespace el {
|
||||
constexpr Enum operator^(Enum a, Enum b) { \
|
||||
return static_cast<Enum>(static_cast<uint32_t>(a) ^ \
|
||||
static_cast<uint32_t>(b)); \
|
||||
} inline void \
|
||||
operator|=(Enum& a, Enum b) { \
|
||||
} \
|
||||
inline void operator|=(Enum& a, Enum b) { \
|
||||
a = static_cast<Enum>(static_cast<uint32_t>(a) | \
|
||||
static_cast<uint32_t>(b)); \
|
||||
} \
|
||||
|
||||
Reference in New Issue
Block a user