Changeset 11741 in webkit for trunk/JavaScriptCore/kxmlcore/RefPtr.h
- Timestamp:
- Dec 22, 2005, 11:35:00 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/RefPtr.h
r11739 r11741 23 23 #ifndef KXMLCORE_REF_PTR_H 24 24 #define KXMLCORE_REF_PTR_H 25 26 #include <algorithm> 25 27 26 28 namespace KXMLCore { … … 143 145 template <class T> inline void RefPtr<T>::swap(RefPtr<T>& o) 144 146 { 145 s tap(m_ptr, o.m_ptr);147 swap(m_ptr, o.m_ptr); 146 148 } 147 149
Note:
See TracChangeset
for help on using the changeset viewer.