k_affinity_mask: Avoid implicit truncation to bool

This can cause compiler warnings. Instead, we can explicitly add a
boolean expression around it to naturally turn the result into a bool.
pull/8/head
Lioncash 4 years ago
parent cde532cc52
commit 756365386a

@ -27,7 +27,7 @@ public:
}
[[nodiscard]] constexpr bool GetAffinity(s32 core) const {
return this->mask & GetCoreBit(core);
return (this->mask & GetCoreBit(core)) != 0;
}
constexpr void SetAffinity(s32 core, bool set) {

Loading…
Cancel
Save