Changeset 29454 in webkit for trunk/JavaScriptCore/kjs/DateMath.h
- Timestamp:
- Jan 13, 2008, 11:47:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/DateMath.h
r20203 r29454 69 69 70 70 // Intentionally overridding the default tm of the system 71 // Not all OS' have the same members of their tm's71 // Tee members of tm differ on various operating systems. 72 72 struct GregorianDateTime : Noncopyable { 73 73 GregorianDateTime() … … 102 102 , isDST(inTm.tm_isdst) 103 103 { 104 #if !PLATFORM(WIN_OS) 104 #if !PLATFORM(WIN_OS) && !PLATFORM(SOLARIS) 105 105 utcOffset = static_cast<int>(inTm.tm_gmtoff); 106 106 … … 129 129 ret.tm_isdst = isDST; 130 130 131 #if !PLATFORM(WIN_OS) 131 #if !PLATFORM(WIN_OS) && !PLATFORM(SOLARIS) 132 132 ret.tm_gmtoff = static_cast<long>(utcOffset); 133 133 ret.tm_zone = timeZone;
Note:
See TracChangeset
for help on using the changeset viewer.