Bitfield: Fix incorrect shift in operator<<=

pull/22/head
Connor McLaughlin 6 years ago
parent d58dbe04c0
commit 5babc076f5

@ -88,7 +88,7 @@ struct BitField
BitField& operator<<=(DataType rhs) BitField& operator<<=(DataType rhs)
{ {
SetValue(GetValue() >> rhs); SetValue(GetValue() << rhs);
return *this; return *this;
} }

Loading…
Cancel
Save