| 140 | } |
| 141 | |
| 142 | Timecode Timecode::operator-(const Timecode &t) const { return operator-(t.total_frames()); } |
| 143 | |
| 144 | Timecode Timecode::operator-(const int i) const { |
| 145 | int f = total_frames() - i; |
nothing calls this directly
no test coverage detected