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
This commit is contained in:
bak@chromium.org 2009-07-16 13:25:45 +00:00
parent e0047e4331
commit 78ffa1df4d

View File

@ -6594,7 +6594,7 @@ uint32_t HashTable<Shape, Key>::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();
}