diff --git a/libcxx/include/chrono b/libcxx/include/chrono index 48a8665e53f51..5ba405e2f2b0e 100644 --- a/libcxx/include/chrono +++ b/libcxx/include/chrono @@ -1839,6 +1839,7 @@ class weekday_last; class weekday { private: unsigned char __wd; + static constexpr unsigned char __weekday_from_days(int __days) noexcept; public: weekday() = default; inline explicit constexpr weekday(unsigned __val) noexcept : __wd(static_cast(__val == 7 ? 0 : __val)) {} @@ -1858,9 +1859,6 @@ public: inline constexpr bool ok() const noexcept { return __wd <= 6; } constexpr weekday_indexed operator[](unsigned __index) const noexcept; constexpr weekday_last operator[](last_spec) const noexcept; - - // TODO: Make private? - static constexpr unsigned char __weekday_from_days(int __days) noexcept; };