Formats the given time in milliseconds as seconds.
| 5159 | |
| 5160 | // Formats the given time in milliseconds as seconds. |
| 5161 | std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { |
| 5162 | ::std::stringstream ss; |
| 5163 | ss << (static_cast<double>(ms) * 1e-3); |
| 5164 | return ss.str(); |
| 5165 | } |
| 5166 | |
| 5167 | static bool PortableLocaltime(time_t seconds, struct tm* out) { |
| 5168 | #if defined(_MSC_VER) |
no outgoing calls
no test coverage detected