Changeset 12737 in webkit for trunk/JavaScriptCore/kxmlcore/RefPtr.h
- Timestamp:
- Feb 10, 2006, 10:47:25 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/RefPtr.h
r12317 r12737 73 73 } 74 74 75 template <typename T> RefPtr<T>& RefPtr<T>::operator=(const RefPtr<T>& o)75 template <typename T> inline RefPtr<T>& RefPtr<T>::operator=(const RefPtr<T>& o) 76 76 { 77 77 T* optr = o.get(); … … 85 85 } 86 86 87 template <typename T> template <typename U> RefPtr<T>& RefPtr<T>::operator=(const RefPtr<U>& o)87 template <typename T> template <typename U> inline RefPtr<T>& RefPtr<T>::operator=(const RefPtr<U>& o) 88 88 { 89 89 T* optr = o.get();
Note:
See TracChangeset
for help on using the changeset viewer.