mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22532 Compiler warning: conversion from 'double' to 'int32_t'.
The definition of kOneDay is 1.0 * U_MILLIS_PER_DAY so there's no reason whatsoever to not just use U_MILLIS_PER_DAY directly here.
This commit is contained in:
parent
52ff51e82c
commit
539e8f41a3
1 changed files with 1 additions and 1 deletions
|
@ -1462,7 +1462,7 @@ void Calendar::computeFields(UErrorCode &ec)
|
|||
// 11/6/00
|
||||
|
||||
int32_t millisInDay;
|
||||
int32_t days = ClockMath::floorDivide(localMillis, kOneDay, &millisInDay);
|
||||
int32_t days = ClockMath::floorDivide(localMillis, U_MILLIS_PER_DAY, &millisInDay);
|
||||
|
||||
internalSet(UCAL_JULIAN_DAY,days + kEpochStartAsJulianDay);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue