LibUnicode: Prefix AK::Duration with AK Namespace

This commit is contained in:
Andrew Kaster 2024-07-16 23:45:18 -06:00 committed by Sam Atkins
parent f8d1a25254
commit 2fa9ec20bd
Notes: sideshowbarker 2024-07-18 23:46:45 +09:00
3 changed files with 5 additions and 5 deletions

View File

@ -70,7 +70,7 @@ TEST_CASE(resolve_primary_time_zone)
using enum Unicode::TimeZoneOffset::InDST;
static void test_offset(StringView time_zone, i64 time, Duration expected_offset, Unicode::TimeZoneOffset::InDST expected_in_dst)
static void test_offset(StringView time_zone, i64 time, AK::Duration expected_offset, Unicode::TimeZoneOffset::InDST expected_in_dst)
{
auto actual_offset = Unicode::time_zone_offset(time_zone, AK::UnixDateTime::from_seconds_since_epoch(time));
VERIFY(actual_offset.has_value());
@ -79,9 +79,9 @@ static void test_offset(StringView time_zone, i64 time, Duration expected_offset
EXPECT_EQ(actual_offset->in_dst, expected_in_dst);
}
static constexpr Duration offset(i64 sign, i64 hours, i64 minutes, i64 seconds)
static constexpr AK::Duration offset(i64 sign, i64 hours, i64 minutes, i64 seconds)
{
return Duration::from_seconds(sign * ((hours * 3600) + (minutes * 60) + seconds));
return AK::Duration::from_seconds(sign * ((hours * 3600) + (minutes * 60) + seconds));
}
// Useful website to convert times in the TZDB (which sometimes are and aren't UTC) to UTC and the desired local time:

View File

@ -134,7 +134,7 @@ Optional<TimeZoneOffset> time_zone_offset(StringView time_zone, UnixDateTime tim
return {};
return TimeZoneOffset {
.offset = Duration::from_milliseconds(raw_offset + dst_offset),
.offset = AK::Duration::from_milliseconds(raw_offset + dst_offset),
.in_dst = dst_offset == 0 ? TimeZoneOffset::InDST::No : TimeZoneOffset::InDST::Yes,
};
}

View File

@ -19,7 +19,7 @@ struct TimeZoneOffset {
Yes,
};
Duration offset;
AK::Duration offset;
InDST in_dst { InDST::No };
};