Changeset 14122 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Apr 28, 2006, 10:28:29 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/testkjs.cpp
r13861 r14122 41 41 #if PLATFORM(WIN_OS) 42 42 #include <windows.h> 43 #include <crtdbg.h> 43 44 #endif 44 45 … … 189 190 int main(int argc, char** argv) 190 191 { 192 #if 0 193 #if defined(_DEBUG) && PLATFORM(WIN_OS) 194 _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR); 195 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE); 196 _CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR); 197 _CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_FILE); 198 _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); 199 _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE); 200 #endif 201 #endif 202 191 203 int res = 0; 192 204 TRY
Note:
See TracChangeset
for help on using the changeset viewer.