| 88 | } |
| 89 | |
| 90 | void WriteMicroSecondsToStream(IOutputStream& os, ui32 microSeconds) { |
| 91 | os << '.' << Pad<6>(microSeconds); |
| 92 | } |
| 93 | |
| 94 | void WriteTmToStream(IOutputStream& os, const struct tm& theTm) { |
| 95 | os << Pad<4>(theTm.tm_year + 1900) << '-' << Pad<2>(theTm.tm_mon + 1) << '-' << Pad<2>(theTm.tm_mday) << 'T' |
no outgoing calls
no test coverage detected