| 312 | } |
| 313 | |
| 314 | static bool getTimeMSFromString(const std::string& str, uint64_t& valInt) { |
| 315 | core::TimeUnit unit; |
| 316 | return !str.empty() && StringToTime(str, valInt, unit) |
| 317 | && ConvertTimeUnitToMS(valInt, unit, valInt); |
| 318 | } |
| 319 | |
| 320 | static bool getTimeMSFromString(const std::string& str, int64_t& valInt) { |
| 321 | core::TimeUnit unit; |
nothing calls this directly
no test coverage detected