| 39 | */ |
| 40 | constexpr int64_t count_seconds(std::chrono::seconds t) { return t.count(); } |
| 41 | constexpr int64_t count_milliseconds(std::chrono::milliseconds t) { return t.count(); } |
| 42 | constexpr int64_t count_microseconds(std::chrono::microseconds t) { return t.count(); } |
| 43 | |
| 44 | using SecondsDouble = std::chrono::duration<double, std::chrono::seconds::period>; |
no test coverage detected