AK: Use appropriate types in AK::Time::from_timestamp factory

Allow the provided year to be negative, and allow millisecond values
larger than 255.
This commit is contained in:
Timothy Flynn 2022-01-14 08:11:45 -05:00 committed by Linus Groh
parent 67473085a1
commit 820dc1fc53

View file

@ -136,7 +136,7 @@ private:
}
public:
[[nodiscard]] constexpr static Time from_timestamp(u16 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u8 millisecond)
[[nodiscard]] constexpr static Time from_timestamp(i32 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u16 millisecond)
{
constexpr auto milliseconds_per_day = 86'400'000;
constexpr auto milliseconds_per_hour = 3'600'000;