Changeset 48427 in webkit for trunk/JavaScriptCore/os-win32/stdint.h
- Timestamp:
- Sep 16, 2009, 12:29:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/os-win32/stdint.h
r32960 r48427 24 24 #include <wtf/Platform.h> 25 25 26 /* This file emulates enough of stdint.h on Windows to make JavaScriptCore and WebCore compile. */ 26 /* This file emulates enough of stdint.h on Windows to make JavaScriptCore and WebCore 27 compile using MSVC which does not ship with the stdint.h header. */ 27 28 28 #if ! PLATFORM(WIN_OS)29 #error "This stdint.h file should only be compiled under Windows"29 #if !COMPILER(MSVC) 30 #error "This stdint.h file should only be compiled with MSVC" 30 31 #endif 31 32
Note:
See TracChangeset
for help on using the changeset viewer.