diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-07-16 09:39:52 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-07-16 12:47:33 +0200 |
commit | 0da8e2eacc95164e3c1d32c8177cc044ed0f1930 (patch) | |
tree | 9e43235f35576d5bf966b78e36a36d2d119b898f /src/common/bit_field.h | |
parent | cd1d5786d998efdf18e9938db957f82331bab579 (diff) |
BitField: Cast enum values to proper integer type.
Diffstat (limited to 'src/common/bit_field.h')
-rw-r--r-- | src/common/bit_field.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h index 52f0d8be6..b6f0179c6 100644 --- a/src/common/bit_field.h +++ b/src/common/bit_field.h @@ -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; } |