Changeset 43087 in webkit for trunk/JavaScriptCore/bytecode/SamplingTool.h
- Timestamp:
- Apr 30, 2009, 2:02:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/SamplingTool.h
r43047 r43087 60 60 61 61 static void sample(); 62 63 class ScopedFlag { 64 public: 65 ScopedFlag(int flag) 66 : m_flag(flag) 67 { 68 setFlag(flag); 69 } 70 71 ~ScopedFlag() 72 { 73 clearFlag(m_flag); 74 } 75 76 private: 77 int m_flag; 78 }; 79 62 80 #endif 63 81 private:
Note:
See TracChangeset
for help on using the changeset viewer.