operator+ -- fix some minor faults

1 · cpprefjp · Sept. 30, 2023, 6:33 a.m.
diff --git a/reference/chrono/time_point/op_plus.md b/reference/chrono/time_point/op_plus.md index 7fa9cd803..57eaa7339 100644 --- a/reference/chrono/time_point/op_plus.md +++ b/reference/chrono/time_point/op_plus.md @@ -23,7 +23,7 @@ namespace chrono { const time_point<Clock, Duration2>& rhs); // (2) C++11 template <class Rep1, class Period1, class Clock, class Duration2> - time_point<Clock, typename common_type<duration<Rep1, Period1>, Duration2>::type> + constexpr time_p...