| Index: src/utils.h
|
| diff --git a/src/utils.h b/src/utils.h
|
| index 3b49a7e71335c1b61a562b42c1e599e256508458..dc3a171c8db3e508a93d18707e2d36f4919f2762 100644
|
| --- a/src/utils.h
|
| +++ b/src/utils.h
|
| @@ -248,6 +248,7 @@ class BitField {
|
| // bitfield without compiler warnings we have to compute 2^32 without
|
| // using a shift count of 32.
|
| static const uint32_t kMask = ((1U << shift) << size) - (1U << shift);
|
| + static const uint32_t kShift = shift;
|
|
|
| // Value for the field with all bits set.
|
| static const T kMax = static_cast<T>((1U << size) - 1);
|
|
|