| 82 | } |
| 83 | |
| 84 | std::string openhd::util::time_readable_ns(uint64_t nanoseconds) { |
| 85 | return time_readable(std::chrono::nanoseconds(nanoseconds)); |
| 86 | } |
| 87 | |
| 88 | uint32_t openhd::util::get_micros(std::chrono::nanoseconds ns) { |
| 89 | return static_cast<uint32_t>( |
nothing calls this directly
no outgoing calls
no test coverage detected