From 1007170df82e330e4e222a14b4c74e0c8ebba6c5 Mon Sep 17 00:00:00 2001 From: Patrick Palka Date: Tue, 25 Aug 2020 11:23:05 -0400 Subject: [PATCH] libstdc++: Fix debug-mode build failure in libstdc++-v3/ChangeLog: * include/std/chrono (year_month_weekday::ok): Fix assert. --- libstdc++-v3/include/std/chrono | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index bf0d7e7af76..3cc1438a7b6 100644 --- a/libstdc++-v3/include/std/chrono +++ b/libstdc++-v3/include/std/chrono @@ -2613,7 +2613,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION days __d = (_M_wdi.weekday() - chrono::weekday{sys_days{_M_y / _M_m / 1}} + days((_M_wdi.index()-1)*7 + 1)); - __glibcxx_assert(__d >= 1); + __glibcxx_assert(__d.count() >= 1); return __d.count() <= unsigned{(_M_y / _M_m / last).day()}; }