| 153 | return mDuration.count() == rhs.mDuration.count(); |
| 154 | } |
| 155 | constexpr bool operator!=(const time_point& rhs) const FL_NOEXCEPT { |
| 156 | return mDuration.count() != rhs.mDuration.count(); |
| 157 | } |
| 158 | |
| 159 | /// Subtract two time_points to get a duration |
| 160 | constexpr Duration operator-(const time_point& rhs) const FL_NOEXCEPT { |