Changeset 13092 in webkit for trunk/JavaScriptCore/kjs/fpconst.cpp
- Timestamp:
- Mar 2, 2006, 2:20:53 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/fpconst.cpp
r13089 r13092 47 47 #else // !PLATFORM(DARWIN) 48 48 49 #include "value.h"50 51 49 #if PLATFORM(BIG_ENDIAN) 52 50 const unsigned char NaN_Bytes[] = { 0x7f, 0xf8, 0, 0, 0, 0, 0, 0 }; … … 59 57 const unsigned char Inf_Bytes[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f }; 60 58 #endif 61 const double NaN = *(const double*) NaN_Bytes;62 const double Inf = *(const double*) Inf_Bytes;59 extern const double NaN = *(const double*) NaN_Bytes; 60 extern const double Inf = *(const double*) Inf_Bytes; 63 61 64 62 #endif // !PLATFORM(DARWIN)
Note:
See TracChangeset
for help on using the changeset viewer.