| 77 | } |
| 78 | |
| 79 | uint64_t GetTimeInterval(const struct timeval& a, |
| 80 | const struct timeval& b) { |
| 81 | return 1000000 * (b.tv_sec - a.tv_sec) + b.tv_usec - a.tv_usec; |
| 82 | } |
| 83 | |
| 84 | } // namespace euler |
nothing calls this directly
no outgoing calls
no test coverage detected