| 5 | using seconds_t = std::chrono::seconds; |
| 6 | |
| 7 | constexpr seconds_t operator ""_s(unsigned long long s) |
| 8 | { |
| 9 | return seconds_t(s); |
| 10 | } |
| 11 | constexpr std::chrono::duration<long double> operator ""_s(long double s) |
| 12 | { |
| 13 | return std::chrono::duration<long double>(s); |
nothing calls this directly
no outgoing calls
no test coverage detected