Changeset 16793 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 4, 2006, 3:57:45 PM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r16790 r16793 1 2006-10-05 Kevin McCullough <[email protected]> 2 3 build fix 4 5 * kjs/DateMath.cpp: 6 (KJS::dateToDayInYear): 7 1 8 2006-10-05 Mark Rowe <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/DateMath.cpp
r16786 r16793 278 278 static int dateToDayInYear(int year, int month, int day) 279 279 { 280 year += static_cast<int>(floor(month / 12 ));280 year += static_cast<int>(floor(month / 12.0)); 281 281 282 282 month = static_cast<int>(fmod(month, 12.0));
Note:
See TracChangeset
for help on using the changeset viewer.