Changeset 54866 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Feb 16, 2010, 8:06:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UStringImpl.h
r54843 r54866 341 341 unsigned m_fiberCount; 342 342 Fiber m_fibers[1]; 343 344 friend class UStringOrRopeImpl; 343 345 }; 344 346 … … 348 350 if (!(m_refCountAndFlags & s_refCountMask)) { 349 351 if (isRope()) 350 delete static_cast<URopeImpl*>(this);352 static_cast<URopeImpl*>(this)->destructNonRecursive(); 351 353 else if (!s_refCountFlagStatic) 352 354 delete static_cast<UStringImpl*>(this);
Note:
See TracChangeset
for help on using the changeset viewer.