| Index: src/field-index.h
|
| diff --git a/src/field-index.h b/src/field-index.h
|
| index 096b33509f7d40dd16d7f046df897b70d511fdf5..ea7a0c425dc78c443177476de0aa64b4b9464997 100644
|
| --- a/src/field-index.h
|
| +++ b/src/field-index.h
|
| @@ -96,12 +96,15 @@ class FieldIndex V8_FINAL {
|
| class IsDoubleBits: public BitField<bool, IsInObjectBits::kNext, 1> {};
|
| // Number of inobject properties.
|
| class InObjectPropertyBits: public BitField<int, IsDoubleBits::kNext,
|
| - kDescriptorIndexBitCount> {};
|
| + kDescriptorIndexBitCount> {
|
| + };
|
| // Offset of first inobject property from beginning of object.
|
| class FirstInobjectPropertyOffsetBits:
|
| - public BitField<int, InObjectPropertyBits::kNext, 7> {};
|
| + public BitField<int, InObjectPropertyBits::kNext, 7> {
|
| + };
|
| class IsHiddenField:
|
| - public BitField<bool, FirstInobjectPropertyOffsetBits::kNext, 1> {};
|
| + public BitField<bool, FirstInobjectPropertyOffsetBits::kNext, 1> {
|
| + };
|
| STATIC_ASSERT(IsHiddenField::kNext <= 32);
|
|
|
| int bit_field_;
|
|
|