| 101 | |
| 102 | |
| 103 | void TimerGroup::operator -= (const TimerGroup& deduct) |
| 104 | { |
| 105 | for (unsigned i = 0; i < timers.size(); i++) |
| 106 | timers[i] -= deduct.timers[i]; |
| 107 | } |
| 108 | |
| 109 | |
| 110 | string TimerGroup::Header() const |
nothing calls this directly
no outgoing calls
no test coverage detected