Changeset 50171 in webkit for trunk/JavaScriptCore/wtf
- Timestamp:
- Oct 27, 2009, 2:04:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/StdLibExtras.h
r46598 r50171 33 33 // it is leaked so that its destructors are not called at exit. Using this 34 34 // macro also allows workarounds a compiler bug present in Apple's version of GCC 4.0.1. 35 #ifndef DEFINE_STATIC_LOCAL 35 36 #if COMPILER(GCC) && defined(__APPLE_CC__) && __GNUC__ == 4 && __GNUC_MINOR__ == 0 && __GNUC_PATCHLEVEL__ == 1 36 37 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ … … 40 41 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ 41 42 static type& name = *new type arguments 43 #endif 42 44 #endif 43 45
Note:
See TracChangeset
for help on using the changeset viewer.