| 261 | } |
| 262 | |
| 263 | bool StopWatch::operator<(const StopWatch & stop_watch) const |
| 264 | { |
| 265 | return getCPUTime() < stop_watch.getCPUTime(); |
| 266 | } |
| 267 | |
| 268 | |
| 269 | bool StopWatch::operator<=(const StopWatch & stop_watch) const |
nothing calls this directly
no test coverage detected