[webkit-changes] cvs commit: JavaScriptCore/kxmlcore AlwaysInline.h
Maciej
mjs at opensource.apple.com
Tue Dec 20 12:18:55 PST 2005
mjs 05/12/20 12:18:55
Modified: . ChangeLog
kxmlcore AlwaysInline.h
Log:
Reviewed by Darin.
- made ALWAYS_INLINE declare things inline as well as __attribute__((always_inline))
http://bugzilla.opendarwin.org/show_bug.cgi?id=6157
* kxmlcore/AlwaysInline.h:
Revision Changes Path
1.916 +10 -0 JavaScriptCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
retrieving revision 1.915
retrieving revision 1.916
diff -u -r1.915 -r1.916
--- ChangeLog 20 Dec 2005 20:12:44 -0000 1.915
+++ ChangeLog 20 Dec 2005 20:18:53 -0000 1.916
@@ -1,8 +1,18 @@
+2005-12-20 Maciej Stachowiak <mjs at apple.com>
+
+ Reviewed by Darin.
+
+ - made ALWAYS_INLINE declare things inline as well as __attribute__((always_inline))
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=6157
+
+ * kxmlcore/AlwaysInline.h:
+
2005-12-19 Maciej Stachowiak <mjs at apple.com>
Reviewed by Darin.
- fixed a leak in the assignment operator from PassRefPtr to RefPtr
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=6157
* kxmlcore/RefPtr.h:
(KXMLCore::RefPtr::operator=):
1.2 +1 -1 JavaScriptCore/kxmlcore/AlwaysInline.h
Index: AlwaysInline.h
===================================================================
RCS file: /cvs/root/JavaScriptCore/kxmlcore/AlwaysInline.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- AlwaysInline.h 19 Dec 2005 19:53:12 -0000 1.1
+++ AlwaysInline.h 20 Dec 2005 20:18:54 -0000 1.2
@@ -21,7 +21,7 @@
#ifndef ALWAYS_INLINE
#if defined(__GNUC__) && (__GNUC__ > 3)
-#define ALWAYS_INLINE __attribute__ ((__always_inline__))
+#define ALWAYS_INLINE inline __attribute__ ((__always_inline__))
#else
#define ALWAYS_INLINE inline
#endif
More information about the webkit-changes
mailing list