| 1106 | std::string DateTime::timevalToString(struct timeval tval, const char* format, |
| 1107 | const el::base::SubsecondPrecision* ssPrec) { |
| 1108 | struct ::tm timeInfo; |
| 1109 | buildTimeInfo(&tval, &timeInfo); |
| 1110 | const int kBuffSize = 30; |
| 1111 | char buff_[kBuffSize] = ""; |
nothing calls this directly
no outgoing calls
no test coverage detected