Changeset 11685 in webkit for trunk/JavaScriptCore
- Timestamp:
- Dec 20, 2005, 12:18:54 PM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r11684 r11685 1 2005-12-20 Maciej Stachowiak <[email protected]> 2 3 Reviewed by Darin. 4 5 - made ALWAYS_INLINE declare things inline as well as __attribute__((always_inline)) 6 http://bugzilla.opendarwin.org/show_bug.cgi?id=6157 7 8 * kxmlcore/AlwaysInline.h: 9 1 10 2005-12-19 Maciej Stachowiak <[email protected]> 2 11 … … 4 13 5 14 - fixed a leak in the assignment operator from PassRefPtr to RefPtr 15 http://bugzilla.opendarwin.org/show_bug.cgi?id=6157 6 16 7 17 * kxmlcore/RefPtr.h: -
trunk/JavaScriptCore/kxmlcore/AlwaysInline.h
r11667 r11685 22 22 #ifndef ALWAYS_INLINE 23 23 #if defined(__GNUC__) && (__GNUC__ > 3) 24 #define ALWAYS_INLINE __attribute__ ((__always_inline__))24 #define ALWAYS_INLINE inline __attribute__ ((__always_inline__)) 25 25 #else 26 26 #define ALWAYS_INLINE inline
Note:
See TracChangeset
for help on using the changeset viewer.