Fix lint complaints in objects.h
authordanno@chromium.org <danno@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 28 May 2014 12:03:40 +0000 (12:03 +0000)
committerdanno@chromium.org <danno@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 28 May 2014 12:03:40 +0000 (12:03 +0000)
R=rossberg@chromium.org
LOG=N

Review URL: https://codereview.chromium.org/304533007

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21567 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/objects.h

index 64664a5..401ce40 100644 (file)
@@ -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