From 8669cce70a526909589646dfb43dd4a80f7f2521 Mon Sep 17 00:00:00 2001 From: "danno@chromium.org" Date: Wed, 28 May 2014 12:03:40 +0000 Subject: [PATCH] Fix lint complaints in objects.h 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/objects.h b/src/objects.h index 64664a5922..401ce404ac 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 {}; + kArrayIndexValueBits> {}; // NOLINT class ArrayIndexLengthBits : public BitField {}; + 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