tmp/tmpntfyj_p2/{from.md → to.md}
RENAMED
|
@@ -21,11 +21,11 @@ database when initialized.
|
|
| 21 |
|
| 22 |
[*Example 1*:
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
for (auto& l : get_tzdb().leap_seconds)
|
| 26 |
-
if (l <= 2018y/March/17d)
|
| 27 |
cout << l.date() << ": " << l.value() << '\n';
|
| 28 |
```
|
| 29 |
|
| 30 |
Produces the output:
|
| 31 |
|
|
|
|
| 21 |
|
| 22 |
[*Example 1*:
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
for (auto& l : get_tzdb().leap_seconds)
|
| 26 |
+
if (l <= sys_days{2018y/March/17d})
|
| 27 |
cout << l.date() << ": " << l.value() << '\n';
|
| 28 |
```
|
| 29 |
|
| 30 |
Produces the output:
|
| 31 |
|