Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 64664a5922acca2a97203dc64b1f27146b4c88e8..401ce404ac31d06e275a0fa7eaa5e57b883ff5b7 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -8798,10 +8798,10 @@ class Name: public HeapObject { |
STATIC_ASSERT((kArrayIndexLengthBits > 0)); |
class ArrayIndexValueBits : public BitField<unsigned int, kNofHashBitFields, |
- kArrayIndexValueBits> {}; |
+ kArrayIndexValueBits> {}; // NOLINT |
class ArrayIndexLengthBits : public BitField<unsigned int, |
kNofHashBitFields + kArrayIndexValueBits, |
- kArrayIndexLengthBits> {}; |
+ kArrayIndexLengthBits> {}; // NOLINT |
// Check that kMaxCachedArrayIndexLength + 1 is a power of two so we |
// could use a mask to test if the length of string is less than or equal to |