| 2137 | |
| 2138 | template <class TimeType> |
| 2139 | static |
| 2140 | std::vector<leap_second> |
| 2141 | load_leap_data(std::istream& inf, |
| 2142 | std::int32_t tzh_leapcnt, std::int32_t tzh_timecnt, |
| 2143 | std::int32_t tzh_typecnt, std::int32_t tzh_charcnt) |
| 2144 | { |
| 2145 | inf.ignore(tzh_timecnt*static_cast<std::int32_t>(sizeof(TimeType)) + tzh_timecnt + |
| 2146 | tzh_typecnt*6 + tzh_charcnt); |
| 2147 | return load_leaps<TimeType>(inf, tzh_leapcnt); |
| 2148 | } |
| 2149 | |
| 2150 | static |
| 2151 | std::vector<leap_second> |
nothing calls this directly
no outgoing calls
no test coverage detected