Fix tzdb parsing to handle new offset comments in 2022b

This commit is contained in:
Howard Hinnant 2022-08-12 10:30:35 -04:00
parent c82b776f28
commit 22ceabf205

View File

@ -3660,6 +3660,10 @@ init_tzdb()
{
db->zones.back().add(line);
}
else if (word.size() > 0 && word[0] == '#')
{
continue;
}
else
{
std::cerr << line << '\n';