Changeset 162206 in webkit for trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
- Timestamp:
- Jan 17, 2014, 11:25:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
r162205 r162206 44 44 { 45 45 // m_characters is put in a local here to avoid an extra atomic load. 46 constUChar* characters = m_characters;46 UChar* characters = m_characters; 47 47 if (!characters) 48 48 return; … … 51 51 return; 52 52 53 fastFree(c onst_cast<void*>(static_cast<const void*>(characters)));53 fastFree(characters); 54 54 } 55 55 … … 83 83 84 84 // m_characters is put in a local here to avoid an extra atomic load. 85 constUChar* characters = m_characters;85 UChar* characters = m_characters; 86 86 if (characters) 87 87 return characters;
Note:
See TracChangeset
for help on using the changeset viewer.