| 214 | } |
| 215 | |
| 216 | TString TInstant::FormatLocalTime(const char* format) const noexcept { |
| 217 | struct tm theTm; |
| 218 | LocalTime(&theTm); |
| 219 | return Strftime(format, &theTm); |
| 220 | } |
| 221 | |
| 222 | TString TInstant::FormatGmTime(const char* format) const noexcept { |
| 223 | struct tm theTm; |
nothing calls this directly
no test coverage detected