* Takes two milestones and returns the difference. * @param start The start time * @param end The end time * @return A double that is the difference time in seconds */
| 77 | * @return A double that is the difference time in seconds |
| 78 | */ |
| 79 | double |
| 80 | difference_sec(T ms_start, T ms_end) const |
| 81 | { |
| 82 | return static_cast<double>(difference_msec(ms_start, ms_end) / 1000.0); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Takes two milestones and returns the difference. |
no outgoing calls
no test coverage detected