| 22 | } |
| 23 | |
| 24 | double toc() |
| 25 | { |
| 26 | end = std::chrono::system_clock::now(); |
| 27 | std::chrono::duration<double> dt = end - start; |
| 28 | return dt.count() * 1000; |
| 29 | } |
| 30 | |
| 31 | void tic_toc() |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected