libvapours: constexpr ALWAYS_INLINE T CombineBits

This commit is contained in:
TuxSH 2020-02-04 02:09:46 +00:00
parent 30e39e60f7
commit c6a736a6f6

View file

@ -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));
}