authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-07-30 14:44:48-07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-07-30 14:44:48-07:00
log3b7e9da9a5cb62da9934898c53d4f47373502e84
treeba57023f2dcaa2e624d751b9b77b46b6f1d0e45f
parent92e685c09cb549fb128ed8d01ebb316b2e371b97
signature Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

fix DateTime.eql bitrot


1 files changed, 1 insertions(+), 2 deletions(-)

time.zig+1-2
......@@ -82,8 +82,7 @@ pub const DateTime = struct {
8282 self.days == other.days and
8383 self.months == other.months and
8484 self.years == other.years and
85 self.timezone == other.timezone and
86 self.weekday == other.weekday;
85 self.z_offset == other.z_offset;
8786 }
8887
8988 pub fn addMs(self: DateTime, count: u64) DateTime {