Changeset 45072 in webkit for trunk/JavaScriptCore/wtf/RefPtr.h
- Timestamp:
- Jun 24, 2009, 12:53:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/RefPtr.h
r38391 r45072 24 24 #include <algorithm> 25 25 #include "AlwaysInline.h" 26 #include "FastAllocBase.h" 26 27 27 28 namespace WTF { … … 33 34 enum HashTableDeletedValueType { HashTableDeletedValue }; 34 35 35 template <typename T> class RefPtr {36 template <typename T> class RefPtr : public FastAllocBase { 36 37 public: 37 38 RefPtr() : m_ptr(0) { }
Note:
See TracChangeset
for help on using the changeset viewer.