BitField: Cast enum values to proper integer type.

pull/8/head
Tony Wasserka 11 years ago
parent cd1d5786d9
commit 0da8e2eacc

@ -142,7 +142,7 @@ public:
__forceinline BitField& operator=(T val)
{
storage = (storage & ~GetMask()) | ((val << position) & GetMask());
storage = (storage & ~GetMask()) | (((StorageType)val << position) & GetMask());
return *this;
}

Loading…
Cancel
Save