| 65 | } |
| 66 | |
| 67 | Duration operator-(const Duration& left, const Duration& right) { |
| 68 | return Duration(left.seconds() - right.seconds()); |
| 69 | } |
| 70 | |
| 71 | Duration operator%(const Duration& left, const Duration& right) { |
| 72 | return Duration(std::fmod(left.seconds(), right.seconds())); |