Changeset 16808 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 5, 2006, 10:20:04 AM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r16798 r16808 1 2006-10-05 Darin Adler <[email protected]> 2 3 Reviewed by Kevin McCullough. 4 5 * wtf/Assertions.cpp: Fix build when _DEBUG is not defined. 6 1 7 2006-10-04 Kevin McCullough <[email protected]> 2 8 -
trunk/JavaScriptCore/wtf/Assertions.cpp
r16782 r16808 100 100 static void printCallSite(const char* file, int line, const char* function) 101 101 { 102 #if PLATFORM(WIN) 102 #if PLATFORM(WIN) && defined _DEBUG 103 103 _CrtDbgReport(_CRT_WARN, file, line, NULL, "%s\n", function); 104 104 #else
Note:
See TracChangeset
for help on using the changeset viewer.