| 2336 | } |
| 2337 | |
| 2338 | sys_info |
| 2339 | time_zone::get_info_impl(sys_seconds tp) const |
| 2340 | { |
| 2341 | using namespace std; |
| 2342 | init(); |
| 2343 | return load_sys_info(upper_bound(transitions_.begin(), transitions_.end(), tp, |
| 2344 | [](const sys_seconds& x, const transition& t) |
| 2345 | { |
| 2346 | return x < t.timepoint; |
| 2347 | })); |
| 2348 | } |
| 2349 | |
| 2350 | local_info |
| 2351 | time_zone::get_info_impl(local_seconds tp) const |
nothing calls this directly
no test coverage detected