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:
Fredrik Roubert 2024-01-03 21:05:14 +09:00 committed by Fredrik Roubert
parent 52ff51e82c
commit 539e8f41a3

View file

@ -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);