Subtract two time_points to get a duration
| 158 | |
| 159 | /// Subtract two time_points to get a duration |
| 160 | constexpr Duration operator-(const time_point& rhs) const FL_NOEXCEPT { |
| 161 | return Duration(mDuration.count() - rhs.mDuration.count()); |
| 162 | } |
| 163 | |
| 164 | /// Add a duration to a time_point |
| 165 | constexpr time_point operator+(const Duration& d) const FL_NOEXCEPT { |
nothing calls this directly
no test coverage detected