| 178 | } |
| 179 | |
| 180 | TString TSimpleTM::ToString(const char* fmt) const { |
| 181 | struct tm t = *this; |
| 182 | return Strftime(fmt, &t); |
| 183 | } |
| 184 | |
| 185 | time_t TSimpleTM::AsTimeT() const { |
| 186 | struct tm t = AsStructTmLocal(); |
nothing calls this directly
no test coverage detected