Changeset 37331 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Oct 6, 2008, 10:00:48 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/DateMath.cpp
r36578 r37331 314 314 tickCountElapsed = (tickCount - tickCountLast); 315 315 else { 316 #if COMPILER(MINGW) 317 __int64 tickCountLarge = tickCount + 0x100000000ULL; 318 #else 316 319 __int64 tickCountLarge = tickCount + 0x100000000I64; 320 #endif 317 321 tickCountElapsed = tickCountLarge - tickCountLast; 318 322 }
Note:
See TracChangeset
for help on using the changeset viewer.