Changeset 11685 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Dec 20, 2005, 12:18:54 PM (19 years ago)
Author:
mjs
Message:

Reviewed by Darin.

  • kxmlcore/AlwaysInline.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r11684 r11685  
     12005-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
    1102005-12-19  Maciej Stachowiak  <[email protected]>
    211
     
    413
    514        - fixed a leak in the assignment operator from PassRefPtr to RefPtr
     15        http://bugzilla.opendarwin.org/show_bug.cgi?id=6157
    616
    717        * kxmlcore/RefPtr.h:
  • trunk/JavaScriptCore/kxmlcore/AlwaysInline.h

    r11667 r11685  
    2222#ifndef ALWAYS_INLINE
    2323#if defined(__GNUC__) && (__GNUC__ > 3)
    24 #define ALWAYS_INLINE __attribute__ ((__always_inline__))
     24#define ALWAYS_INLINE inline __attribute__ ((__always_inline__))
    2525#else
    2626#define ALWAYS_INLINE inline
Note: See TracChangeset for help on using the changeset viewer.