summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMai M <mathew1800@gmail.com>2021-09-13 23:21:22 +0200
committerGitHub <noreply@github.com>2021-09-13 23:21:22 +0200
commitedf3da346f4ec0ca492b427f4f693d56e84abc52 (patch)
tree3445012c7f4646f81c1ab3fce49f5b8eb9cba4b4
parentMerge pull request #6944 from FernandoS27/dear-drunk-me (diff)
parentcommon_funcs: Add enum flag bitwise shift operator overloads (diff)
downloadyuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.tar
yuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.tar.gz
yuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.tar.bz2
yuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.tar.lz
yuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.tar.xz
yuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.tar.zst
yuzu-edf3da346f4ec0ca492b427f4f693d56e84abc52.zip
-rw-r--r--src/common/common_funcs.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 1e74d6930..4c1e29de6 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -61,6 +61,14 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
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)); \
+ } \
+ [[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 { \
a = a | b; \
return a; \
@@ -73,6 +81,14 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
a = a ^ b; \
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 { \
using T = std::underlying_type_t<type>; \
return static_cast<type>(~static_cast<T>(key)); \