summaryrefslogtreecommitdiff
path: root/src/common/bit_field.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/bit_field.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h
index 257d5577d..3bc53500d 100644
--- a/src/common/bit_field.h
+++ b/src/common/bit_field.h
@@ -160,7 +160,7 @@ public:
160 if (std::numeric_limits<T>::is_signed) 160 if (std::numeric_limits<T>::is_signed)
161 { 161 {
162 std::size_t shift = 8 * sizeof(T)-bits; 162 std::size_t shift = 8 * sizeof(T)-bits;
163 return (T)(((storage & GetMask()) << (shift - position)) >> shift); 163 return (T)((storage << (shift - position)) >> shift);
164 } 164 }
165 else 165 else
166 { 166 {