Author: [email protected]
Date: Thu Jul 16 06:25:45 2009
New Revision: 2487

Modified:
    branches/bleeding_edge/src/objects.cc

Log:
Added two spaces to make presubmit.py happy.

Modified: branches/bleeding_edge/src/objects.cc
==============================================================================
--- branches/bleeding_edge/src/objects.cc       (original)
+++ branches/bleeding_edge/src/objects.cc       Thu Jul 16 06:25:45 2009
@@ -6594,7 +6594,7 @@
    do {
      entry = ++hash & mask;
      element = KeyAt(entry);
-  } while(!(element->IsUndefined() || element->IsNull()));
+  } while (!(element->IsUndefined() || element->IsNull()));

    return entry;
  }
@@ -7033,7 +7033,7 @@
    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();
      }

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to