Common: Fix mask generation in BitField
This commit is contained in:
parent
ced89be3b7
commit
c334a6ca65
|
@ -183,7 +183,7 @@ private:
|
||||||
|
|
||||||
__forceinline StorageType GetMask() const
|
__forceinline StorageType GetMask() const
|
||||||
{
|
{
|
||||||
return ((~(StorageTypeU)0) >> (8 * sizeof(T) - bits)) << position;
|
return (((StorageTypeU)~0) >> (8 * sizeof(T) - bits)) << position;
|
||||||
}
|
}
|
||||||
|
|
||||||
StorageType storage;
|
StorageType storage;
|
||||||
|
|
Loading…
Reference in New Issue