Ignore:
Timestamp:
Jan 13, 2006, 1:32:51 AM (19 years ago)
Author:
darin
Message:
  • Replaced tabs with spaces in source files that had less than 10 lines with tabs.
  • Set allow-tabs Subversion property in source files that have more than 10 lines with tabs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/property_map.cpp

    r11962 r12069  
    440440        // update the count, because single entries don't count towards
    441441        // the table key count
    442         ++_table->keyCount;
    443         assert(_table->keyCount == 1);
     442        ++_table->keyCount;
     443        assert(_table->keyCount == 1);
    444444    }
    445445#endif
     
    764764        unsigned h = rep->hash();
    765765        int i = h & _table->sizeMask;
    766         int k = 0;
     766        int k = 0;
    767767        while (UString::Rep *key = _table->entries[i].key) {
    768768            if (rep == key)
    769769                break;
    770             if (k == 0)
    771                 k = 1 | (h % _table->sizeMask);
    772             i = (i + k) & _table->sizeMask;
     770            if (k == 0)
     771                k = 1 | (h % _table->sizeMask);
     772            i = (i + k) & _table->sizeMask;
    773773        }
    774774        assert(i == j);
Note: See TracChangeset for help on using the changeset viewer.