mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
LibUnicode: Prefix AK::Duration with AK Namespace
This commit is contained in:
parent
f8d1a25254
commit
2fa9ec20bd
Notes:
sideshowbarker
2024-07-18 23:46:45 +09:00
Author: https://github.com/ADKaster
Commit: 2fa9ec20bd
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/676
Reviewed-by: https://github.com/AtkinsSJ ✅
Reviewed-by: https://github.com/trflynn89 ✅
3 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue