Parse time >= 100 hours for multi-day routes.
This commit is contained in:
parent
46996effa6
commit
c3804b0d98
1 changed files with 2 additions and 2 deletions
|
@ -516,8 +516,8 @@ inline Time::Time(const std::string & raw_time_str) : raw_time(raw_time_str)
|
|||
return;
|
||||
|
||||
const size_t len = raw_time.size();
|
||||
if (!(len == 7 || len == 8) || (raw_time[len - 3] != ':' && raw_time[len - 6] != ':'))
|
||||
throw InvalidFieldFormat("Time is not in [H]H:MM:SS format: " + raw_time_str);
|
||||
if (!(len >= 7 && len <= 9) || (raw_time[len - 3] != ':' && raw_time[len - 6] != ':'))
|
||||
throw InvalidFieldFormat("Time is not in [[H]H]H:MM:SS format: " + raw_time_str);
|
||||
|
||||
hh = static_cast<uint16_t>(std::stoi(raw_time.substr(0, len - 6)));
|
||||
mm = static_cast<uint16_t>(std::stoi(raw_time.substr(len - 5, 2)));
|
||||
|
|
Loading…
Add table
Reference in a new issue