| 132 | } |
| 133 | |
| 134 | Timecode Timecode::operator+(const Timecode &t) const { return operator+(t.total_frames()); } |
| 135 | |
| 136 | Timecode Timecode::operator+(const int i) const { |
| 137 | int frameSum = total_frames() + i; |
nothing calls this directly
no test coverage detected