mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-09 19:25:10 +01:00
libvapours: constexpr ALWAYS_INLINE T CombineBits
This commit is contained in:
parent
30e39e60f7
commit
c6a736a6f6
@ -70,7 +70,7 @@ namespace ams::util {
|
|||||||
};
|
};
|
||||||
|
|
||||||
template<typename T = u64, typename ...Args>
|
template<typename T = u64, typename ...Args>
|
||||||
T CombineBits(Args... args) {
|
constexpr ALWAYS_INLINE T CombineBits(Args... args) {
|
||||||
return (... | (T(1u) << args));
|
return (... | (T(1u) << args));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user