| 475 | } |
| 476 | |
| 477 | inline struct tm* LocalTime(struct tm* tm) const noexcept { |
| 478 | time_t clock = Seconds(); |
| 479 | return localtime_r(&clock, tm); |
| 480 | } |
| 481 | |
| 482 | inline struct tm* GmTime(struct tm* tm) const noexcept { |
| 483 | time_t clock = Seconds(); |
no test coverage detected