Add a duration to a time_point
| 163 | |
| 164 | /// Add a duration to a time_point |
| 165 | constexpr time_point operator+(const Duration& d) const FL_NOEXCEPT { |
| 166 | return time_point(Duration(mDuration.count() + d.count())); |
| 167 | } |
| 168 | |
| 169 | /// Subtract a duration from a time_point |
| 170 | constexpr time_point operator-(const Duration& d) const FL_NOEXCEPT { |
nothing calls this directly
no test coverage detected