We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e1d2fe commit 022d8d8Copy full SHA for 022d8d8
reference/chrono/leap_second.md
@@ -67,7 +67,7 @@ int main()
67
{
68
// 2018年3月17日までにうるう秒が挿入された日を列挙する
69
for (const chrono::leap_second& date : chrono::get_tzdb().leap_seconds) {
70
- if (date <= 2018y/3/17)
+ if (date.date() <= chrono::sys_days{2018y/3/17})
71
std::cout << date.date() << ": " << date.value() << std::endl;
72
}
73
@@ -114,7 +114,7 @@ int main()
114
115
### 処理系
116
- [Clang](/implementation.md#clang): 9.0 [mark noimpl]
117
-- [GCC](/implementation.md#gcc): 9.2 [mark noimpl]
+- [GCC](/implementation.md#gcc): 9.2 [mark noimpl], 13.2 [mark verified]
118
- [Visual C++](/implementation.md#visual_cpp): 2019 Update 3 [mark noimpl]
119
120
0 commit comments