Changeset 27610 in webkit for trunk/JavaScriptCore/kjs/date_object.cpp
- Timestamp:
- Nov 8, 2007, 1:26:49 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/date_object.cpp
r27608 r27610 58 58 #include <wtf/MathExtras.h> 59 59 #include <wtf/StringExtras.h> 60 #include <wtf/UnusedParam.h> 60 61 61 62 #if PLATFORM(MAC) … … 1023 1024 return jsString(formatLocaleDate(exec, secs, true, true, args)); 1024 1025 #else 1026 UNUSED_PARAM(args); 1027 1025 1028 const bool utc = false; 1026 1029 … … 1046 1049 return jsString(formatLocaleDate(exec, secs, true, false, args)); 1047 1050 #else 1051 UNUSED_PARAM(args); 1052 1048 1053 const bool utc = false; 1049 1054 … … 1069 1074 return jsString(formatLocaleDate(exec, secs, false, true, args)); 1070 1075 #else 1076 UNUSED_PARAM(args); 1077 1071 1078 const bool utc = false; 1072 1079
Note:
See TracChangeset
for help on using the changeset viewer.