Changeset 32960 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 7, 2008, 10:16:03 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r32949 r32960 1 2008-05-07 Julien Chaffraix <[email protected]> 2 3 Reviewed by Adam Roben. 4 5 wx & Gtk build fix. 6 7 Add SIZE_MAX definition for the wx port. 8 9 * os-win32/stdint.h: 10 1 11 2008-05-07 Ariya Hidayat <[email protected]> 2 12 -
trunk/JavaScriptCore/os-win32/stdint.h
r16780 r32960 30 30 #endif 31 31 32 #include <limits.h> 33 32 34 typedef unsigned char uint8_t; 33 35 typedef signed char int8_t; … … 38 40 typedef __int64 int64_t; 39 41 typedef unsigned __int64 uint64_t; 42 43 #if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) 44 #ifndef SIZE_MAX 45 #ifdef _WIN64 46 #define SIZE_MAX _UI64_MAX 47 #else 48 #define SIZE_MAX _UI32_MAX 49 #endif 50 #endif 51 #endif 40 52 41 53 #ifndef CASSERT
Note:
See TracChangeset
for help on using the changeset viewer.