Changeset 14256 in webkit for trunk/JavaScriptCore/wtf/OwnPtr.h
- Timestamp:
- May 9, 2006, 2:27:55 AM (19 years ago)
- Location:
- trunk/JavaScriptCore/wtf
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/OwnPtr.h
r12523 r14256 24 24 25 25 #include <algorithm> 26 #include < kxmlcore/Assertions.h>27 #include < kxmlcore/Noncopyable.h>26 #include <wtf/Assertions.h> 27 #include <wtf/Noncopyable.h> 28 28 29 namespace KXMLCore{29 namespace WTF { 30 30 31 31 template <typename T> class OwnPtr : Noncopyable { … … 59 59 template <typename T> inline void swap(OwnPtr<T>& a, OwnPtr<T>& b) { a.swap(b); } 60 60 61 } // namespace KXMLCore61 } // namespace WTF 62 62 63 using KXMLCore::OwnPtr;63 using WTF::OwnPtr; 64 64 65 65 #endif // KXMLCORE_OWN_PTR_H
Note:
See TracChangeset
for help on using the changeset viewer.