Changeset 76248 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jan 20, 2011, 8:30:54 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r72442 r76248 243 243 #endif 244 244 245 class CodeBlock : public FastAllocBase { 245 class CodeBlock { 246 WTF_MAKE_FAST_ALLOCATED; 246 247 friend class JIT; 247 248 protected: … … 579 580 SymbolTable* m_symbolTable; 580 581 581 struct RareData : FastAllocBase { 582 struct RareData { 583 WTF_MAKE_FAST_ALLOCATED; 584 public: 582 585 Vector<HandlerInfo> m_exceptionHandlers; 583 586 … … 600 603 #endif 601 604 }; 605 #if PLATFORM(WIN) 606 friend void WTF::deleteOwnedPtr<RareData>(RareData*); 607 #endif 602 608 OwnPtr<RareData> m_rareData; 603 609 };
Note:
See TracChangeset
for help on using the changeset viewer.