| 103 | } |
| 104 | |
| 105 | CelValue GetTimeOfDayUTC(Arena* arena, absl::Time time_stamp) { |
| 106 | absl::TimeZone utc = absl::UTCTimeZone(); |
| 107 | // call to helper function GetTimeOfDayTz |
| 108 | // return value from helper |
| 109 | return GetTimeOfDayTz(arena, time_stamp, utc); |
| 110 | } |
| 111 | |
| 112 | int ToSeconds(const google::type::TimeOfDay* time_of_day) { |
| 113 | int seconds = 0; |
no test coverage detected