Changeset 72592 in webkit for trunk/JavaScriptCore/runtime/Identifier.cpp
- Timestamp:
- Nov 23, 2010, 2:07:20 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Identifier.cpp
r71375 r72592 90 90 static unsigned hash(const char* c) 91 91 { 92 return StringImpl::computeHash(c);92 return WTF::StringHasher::createHash<char>(c); 93 93 } 94 94 … … 150 150 static unsigned hash(const UCharBuffer& buf) 151 151 { 152 return StringImpl::computeHash(buf.s, buf.length);152 return WTF::StringHasher::createHash<UChar>(buf.s, buf.length); 153 153 } 154 154
Note:
See TracChangeset
for help on using the changeset viewer.