Change default_zone from "UTC" to "Etc/UTC"

* zoned_traits<const time_zone*>::default_zone()
  should not depend on a Link, but on a Zone.
This commit is contained in:
Howard Hinnant 2017-11-19 18:17:09 -05:00
parent c9ef0a8f05
commit d97bc984c7

View File

@ -292,7 +292,7 @@ struct zoned_traits<const time_zone*>
const time_zone*
default_zone()
{
return date::locate_zone("UTC");
return date::locate_zone("Etc/UTC");
}
#if HAS_STRING_VIEW