Changeset 57932 in webkit for trunk/JavaScriptCore/runtime/RopeImpl.h
- Timestamp:
- Apr 20, 2010, 3:34:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/RopeImpl.h
r57912 r57932 31 31 namespace JSC { 32 32 33 class RopeImpl : public UStringImplBase {33 class RopeImpl : public StringImplBase { 34 34 public: 35 35 // A RopeImpl is composed from a set of smaller strings called Fibers. 36 36 // Each Fiber in a rope is either UStringImpl or another RopeImpl. 37 typedef UStringImplBase* Fiber;37 typedef StringImplBase* Fiber; 38 38 39 39 // Creates a RopeImpl comprising of 'fiberCount' Fibers. … … 73 73 74 74 private: 75 RopeImpl(unsigned fiberCount) : UStringImplBase(ConstructNonStringImpl), m_fiberCount(fiberCount) {}75 RopeImpl(unsigned fiberCount) : StringImplBase(ConstructNonStringImpl), m_fiberCount(fiberCount) {} 76 76 77 77 void destructNonRecursive();
Note:
See TracChangeset
for help on using the changeset viewer.