From 3b7e9da9a5cb62da9934898c53d4f47373502e84 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 30 Jul 2026 14:44:48 -0700 Subject: [PATCH] fix DateTime.eql bitrot --- time.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/time.zig b/time.zig index 14e243badc0761de3f178304e3d49bc1a0409a27..ed8c74b614ebda913c59ec5993371786d4282105 100644 --- a/time.zig +++ b/time.zig @@ -82,8 +82,7 @@ pub const DateTime = struct { self.days == other.days and self.months == other.months and self.years == other.years and - self.timezone == other.timezone and - self.weekday == other.weekday; + self.z_offset == other.z_offset; } pub fn addMs(self: DateTime, count: u64) DateTime { -- 2.54.0