mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-18 08:11:21 +00: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>
|
||||
T CombineBits(Args... args) {
|
||||
constexpr ALWAYS_INLINE T CombineBits(Args... args) {
|
||||
return (... | (T(1u) << args));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user