| 65 | }; |
| 66 | |
| 67 | TSimpleTM TSimpleTM::CurrentUTC() { |
| 68 | return New((time_t)TInstant::MicroSeconds(InterpolatedMicroSeconds()).Seconds()); |
| 69 | } |
| 70 | |
| 71 | TSimpleTM TSimpleTM::New(time_t t, i32 gmtoff, i8 isdst) { |
| 72 | time_t tt = t + gmtoff + isdst * 3600; |
nothing calls this directly
no test coverage detected