[COMMITTED] libstdc++: Fix debug-mode build failure in <chrono>

Patrick Palka ppalka@redhat.com
Tue Aug 25 15:26:51 GMT 2020


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()};
       }
 
-- 
2.28.0.308.g675a4aaf3b



More information about the Libstdc++ mailing list