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