Changeset 59196 in webkit for trunk/JavaScriptCore/wtf/text/AtomicString.h
- Timestamp:
- May 11, 2010, 7:25:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/text/AtomicString.h
r57914 r59196 118 118 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash); 119 119 static PassRefPtr<StringImpl> add(const UChar*); 120 static PassRefPtr<StringImpl> add(StringImpl*); 120 PassRefPtr<StringImpl> add(StringImpl* r) 121 { 122 if (!r || r->isAtomic()) 123 return r; 124 return addSlowCase(r); 125 } 126 static PassRefPtr<StringImpl> addSlowCase(StringImpl*); 121 127 }; 122 128
Note:
See TracChangeset
for help on using the changeset viewer.