| 61 | } |
| 62 | |
| 63 | template <> std::string duration_to_string(std::chrono::nanoseconds duration) |
| 64 | { |
| 65 | return std::to_string(duration.count()) + "ns"; |
| 66 | } |
| 67 | template <> std::string duration_to_string(std::chrono::microseconds duration) |
| 68 | { |
| 69 | return std::to_string(duration.count()) + "\xC2\xB5s"; |