@@ -677,9 +677,9 @@ void __init_tzdb(tzdb& __tzdb, __tz::__rules_storage_type& __rules) {
677
677
678
678
__tzdb.version = chrono::__parse_version (__tzdata);
679
679
chrono::__parse_tzdata (__tzdb, __rules, __tzdata);
680
- std:: ranges::sort (__tzdb.zones );
681
- std:: ranges::sort (__tzdb.links );
682
- std:: ranges::sort (__rules, {}, [](const auto & p) { return p.first ; });
680
+ ranges::sort (__tzdb.zones );
681
+ ranges::sort (__tzdb.links );
682
+ ranges::sort (__rules, {}, [](const auto & p) { return p.first ; });
683
683
684
684
// There are two files with the leap second information
685
685
// - leapseconds as specified by zic
@@ -724,10 +724,10 @@ void __init_tzdb(tzdb& __tzdb, __tz::__rules_storage_type& __rules) {
724
724
return __result;
725
725
726
726
filesystem::path __path = " /etc/localtime" ;
727
- if (!std:: filesystem::exists (__path))
727
+ if (!filesystem::exists (__path))
728
728
std::__throw_runtime_error (" tzdb: the symlink '/etc/localtime' does not exist" );
729
729
730
- if (!std:: filesystem::is_symlink (__path))
730
+ if (!filesystem::is_symlink (__path))
731
731
std::__throw_runtime_error (" tzdb: the path '/etc/localtime' is not a symlink" );
732
732
733
733
filesystem::path __tz = filesystem::read_symlink (__path);
0 commit comments