Fix whitespace in function about to be extracted.

This commit is contained in:
John Ralls 2016-09-27 15:11:06 +02:00
parent 158b17d582
commit a7ca20572d

View File

@ -660,7 +660,7 @@ TimeZoneProvider::TimeZoneProvider(const std::string& tzname) : zone_vector {}
} }
} }
} }
catch(boost::gregorian::bad_year err) catch(const boost::gregorian::bad_year& err)
{ {
continue; continue;
} }
@ -674,6 +674,8 @@ TimeZoneProvider::TimeZoneProvider(const std::string& tzname) : zone_vector {}
else //Last DST rule forever after. else //Last DST rule forever after.
zone_vector.push_back(zone_from_rule(max_year, last_rule)); zone_vector.push_back(zone_from_rule(max_year, last_rule));
} }
}
#endif #endif