| 1 | constexpr UnixTime::UnixTime(uint64_t utc_time) : |
| 2 | utc_micros_(utc_time) {} |
| 3 | |
| 4 | constexpr bool UnixTime::operator==(const UnixTime& other) const { |
| 5 | return utc_micros_ == other.utc_micros_; |
nothing calls this directly
no outgoing calls
no test coverage detected