Changeset 30133 in webkit for trunk/JavaScriptCore/wtf/RefCounted.h
- Timestamp:
- Feb 10, 2008, 6:03:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/RefCounted.h
r30051 r30133 29 29 template<class T> class RefCounted : Noncopyable { 30 30 public: 31 RefCounted(int initialRefCount = 0)31 RefCounted(int initialRefCount) 32 32 : m_refCount(initialRefCount) 33 33 #ifndef NDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.