Changeset 38699 in webkit for trunk/JavaScriptCore/jsc.cpp
- Timestamp:
- Nov 24, 2008, 12:09:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jsc.cpp
r38523 r38699 52 52 #endif 53 53 54 #if COMPILER(MSVC) 54 #if COMPILER(MSVC) && !PLATFORM(WIN_CE) 55 55 #include <crtdbg.h> 56 56 #include <windows.h> … … 257 257 cleanupGlobalData(&exec->globalData()); 258 258 exit(EXIT_SUCCESS); 259 #if !COMPILER(MSVC) 259 #if !COMPILER(MSVC) && !PLATFORM(WIN_CE) 260 260 // MSVC knows that exit(0) never returns, so it flags this return statement as unreachable. 261 261 return jsUndefined();
Note:
See TracChangeset
for help on using the changeset viewer.