mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-17 09:27:33 +01:00
Merge pull request #7005 from Morph1984/enum-bitwise-shift-ops
common_funcs: Add enum flag bitwise shift operator overloads
This commit is contained in:
commit
edf3da346f
@ -61,6 +61,14 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
|
|||||||
using T = std::underlying_type_t<type>; \
|
using T = std::underlying_type_t<type>; \
|
||||||
return static_cast<type>(static_cast<T>(a) ^ static_cast<T>(b)); \
|
return static_cast<type>(static_cast<T>(a) ^ static_cast<T>(b)); \
|
||||||
} \
|
} \
|
||||||
|
[[nodiscard]] constexpr type operator<<(type a, type b) noexcept { \
|
||||||
|
using T = std::underlying_type_t<type>; \
|
||||||
|
return static_cast<type>(static_cast<T>(a) << static_cast<T>(b)); \
|
||||||
|
} \
|
||||||
|
[[nodiscard]] constexpr type operator>>(type a, type b) noexcept { \
|
||||||
|
using T = std::underlying_type_t<type>; \
|
||||||
|
return static_cast<type>(static_cast<T>(a) >> static_cast<T>(b)); \
|
||||||
|
} \
|
||||||
constexpr type& operator|=(type& a, type b) noexcept { \
|
constexpr type& operator|=(type& a, type b) noexcept { \
|
||||||
a = a | b; \
|
a = a | b; \
|
||||||
return a; \
|
return a; \
|
||||||
@ -73,6 +81,14 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
|
|||||||
a = a ^ b; \
|
a = a ^ b; \
|
||||||
return a; \
|
return a; \
|
||||||
} \
|
} \
|
||||||
|
constexpr type& operator<<=(type& a, type b) noexcept { \
|
||||||
|
a = a << b; \
|
||||||
|
return a; \
|
||||||
|
} \
|
||||||
|
constexpr type& operator>>=(type& a, type b) noexcept { \
|
||||||
|
a = a >> b; \
|
||||||
|
return a; \
|
||||||
|
} \
|
||||||
[[nodiscard]] constexpr type operator~(type key) noexcept { \
|
[[nodiscard]] constexpr type operator~(type key) noexcept { \
|
||||||
using T = std::underlying_type_t<type>; \
|
using T = std::underlying_type_t<type>; \
|
||||||
return static_cast<type>(~static_cast<T>(key)); \
|
return static_cast<type>(~static_cast<T>(key)); \
|
||||||
|
Loading…
Reference in New Issue
Block a user