From 78ffa1df4d723e32212aabe5f76a8bcd9e9f5271 Mon Sep 17 00:00:00 2001 From: "bak@chromium.org" Date: Thu, 16 Jul 2009 13:25:45 +0000 Subject: [PATCH] Added two spaces to make presubmit.py happy. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2487 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/objects.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/objects.cc b/src/objects.cc index 52438090fa..0fa6e6e4f8 100644 --- a/src/objects.cc +++ b/src/objects.cc @@ -6594,7 +6594,7 @@ uint32_t HashTable::FindInsertionEntry(uint32_t hash) { do { entry = ++hash & mask; element = KeyAt(entry); - } while(!(element->IsUndefined() || element->IsNull())); + } while (!(element->IsUndefined() || element->IsNull())); return entry; } @@ -7033,7 +7033,7 @@ class SymbolsKey : public HashTableKey { uint32_t HashForObject(Object* obj) { FixedArray* symbols = FixedArray::cast(obj); int len = symbols->length(); - uint32_t hash = 40617523; // In case the array is empty. + uint32_t hash = 40617523; // In case the array is empty. for (int i = 0; i < len; i++) { hash ^= String::cast(symbols->get(i))->Hash(); }