Skip to content

Commit bef6372

Browse files
author
Colin Robertson
authored
Merge pull request #3920 from MicrosoftDocs/FromPrivateLiveToMaster
Resolve syncing conflicts from FromPrivateLiveToMaster to main
2 parents 97ec420 + 4f7195e commit bef6372

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/standard-library/chrono.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: <chrono>"
33
title: "<chrono>"
4-
ms.date: 10/13/2021
4+
ms.date: 05/20/2022
55
f1_keywords: ["<chrono>", "chrono/std::chrono::nanoseconds", "chrono/std::chrono::minutes", "chrono/std::chrono::seconds", "chrono/std::chrono::hours", "chrono/std::chrono::milliseconds", "chrono/std::chrono::microseconds"]
66
---
77

@@ -14,7 +14,11 @@ Beginning in Visual Studio 2015, the implementation of `steady_clock` has change
1414
- `high_resolution_clock` is now a typedef for `steady_clock`
1515
In the Microsoft C++ implementation, `steady_clock::time_point` is now a `typedef` for `chrono::time_point<steady_clock>`. However, this isn't necessarily the case for other implementations.
1616

17-
While the STL generally provides all features on all supported versions of Windows, leap seconds and time zones (which change over time) require OS support that was added to Windows 10. Specifically, updating the leap second database requires Windows 10 version 1809 or later, and time zones require icu.dll which is provided by Windows 10 version 1903/19H1 or later. This applies to both client and server OSes; note that Windows Server 2019 is based on Windows 10 version 1809. Attempting to use the time-zone facilities when running on older versions of windows will result in a runtime error.
17+
Time zones are changed over time by regional legislatures. Leap seconds are added by an international standards body. OS support for a database of these changes was added to Windows 10.
18+
- Updates to the leap second database require Windows 10 version 1809 or later.
19+
- Time zone support requires `icu.dll`, which is provided by Windows 10 version 1903/19H1 or later. This requirement applies to both client and server operating systems. Windows Server 2019 is based on Windows 10 version 1809.
20+
21+
Use of the time-zone facilities when running on older versions of Windows results in a runtime error.
1822

1923
## Requirements
2024

0 commit comments

Comments
 (0)