Minor bitwise enum macro change

This commit is contained in:
Jack Andersen 2018-12-15 20:29:41 -10:00
parent c5a4416463
commit 3d59b56a48
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ typedef struct stat64 atStat64_t;
a = type(static_cast<T>(a) & static_cast<T>(b)); \
return a; \
} \
inline type operator~(const type& key) { \
constexpr type operator~(type key) { \
using T = std::underlying_type_t<type>; \
return type(~static_cast<T>(key)); \
}