[webkit-changes] cvs commit: JavaScriptCore/kxmlcore RefPtr.h
Maciej
mjs at opensource.apple.com
Fri Dec 23 00:34:43 PST 2005
mjs 05/12/23 00:34:43
Modified: . ChangeLog
kxmlcore RefPtr.h
Log:
- this time for sure
* kxmlcore/RefPtr.h:
(KXMLCore::::swap):
Revision Changes Path
1.925 +7 -0 JavaScriptCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
retrieving revision 1.924
retrieving revision 1.925
diff -u -r1.924 -r1.925
--- ChangeLog 23 Dec 2005 07:34:59 -0000 1.924
+++ ChangeLog 23 Dec 2005 08:34:40 -0000 1.925
@@ -1,3 +1,10 @@
+2005-12-23 Maciej Stachowiak <mjs at apple.com>
+
+ - this time for sure
+
+ * kxmlcore/RefPtr.h:
+ (KXMLCore::::swap):
+
2005-12-22 Maciej Stachowiak <mjs at apple.com>
- fix build problem from last commit.
1.11 +1 -1 JavaScriptCore/kxmlcore/RefPtr.h
Index: RefPtr.h
===================================================================
RCS file: /cvs/root/JavaScriptCore/kxmlcore/RefPtr.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- RefPtr.h 23 Dec 2005 07:35:00 -0000 1.10
+++ RefPtr.h 23 Dec 2005 08:34:42 -0000 1.11
@@ -144,7 +144,7 @@
template <class T> inline void RefPtr<T>::swap(RefPtr<T>& o)
{
- swap(m_ptr, o.m_ptr);
+ std::swap(m_ptr, o.m_ptr);
}
template <class T> inline void swap(RefPtr<T>& a, RefPtr<T>& b)
More information about the webkit-changes
mailing list