summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-09-13 22:01:20 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-09-13 22:01:20 +0200
commit3512cae62368d6897f9e6c8aced785e0ce89e156 (patch)
tree4791c8b413cc98e9c025e301e5c9897581795360
parentMerge pull request #7000 from Morph1984/create-dir-comment (diff)
downloadyuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.tar
yuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.tar.gz
yuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.tar.bz2
yuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.tar.lz
yuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.tar.xz
yuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.tar.zst
yuzu-3512cae62368d6897f9e6c8aced785e0ce89e156.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)); \