Changeset 76248 in webkit for trunk/Source/JavaScriptCore/runtime/RegExpObject.h
- Timestamp:
- Jan 20, 2011, 8:30:54 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/RegExpObject.h
r76180 r76248 59 59 bool match(ExecState*); 60 60 61 struct RegExpObjectData : FastAllocBase { 61 struct RegExpObjectData { 62 WTF_MAKE_FAST_ALLOCATED; 63 public: 62 64 RegExpObjectData(NonNullPassRefPtr<RegExp> regExp, double lastIndex) 63 65 : regExp(regExp) … … 69 71 double lastIndex; 70 72 }; 71 73 #if PLATFORM(WIN) 74 friend void WTF::deleteOwnedPtr<RegExpObjectData>(RegExpObjectData*); 75 #endif 72 76 OwnPtr<RegExpObjectData> d; 73 77 };
Note:
See TracChangeset
for help on using the changeset viewer.