Changeset 27297 in webkit for trunk/JavaScriptCore/wtf
- Timestamp:
- Oct 31, 2007, 12:20:00 AM (18 years ago)
- Location:
- trunk/JavaScriptCore/wtf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/AlwaysInline.h
r26995 r27297 23 23 #if COMPILER(GCC) && defined(NDEBUG) 24 24 #define ALWAYS_INLINE inline __attribute__ ((__always_inline__)) 25 #elif COMPILER(MSVC) && defined(NDEBUG) 26 #define ALWAYS_INLINE __forceinline 25 27 #else 26 28 #define ALWAYS_INLINE inline -
trunk/JavaScriptCore/wtf/FastMalloc.h
r23518 r27297 56 56 #elif COMPILER(GCC) 57 57 #define WTF_PRIVATE_INLINE inline __attribute__((always_inline)) 58 #elif COMPILER(MSVC) 59 #define WTF_PRIVATE_INLINE __forceinline 58 60 #else 59 61 #define WTF_PRIVATE_INLINE inline
Note:
See TracChangeset
for help on using the changeset viewer.