From c7e7ca8a03e160cb90bb3e82055282aac073d7d9 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Tue, 9 Jun 2026 19:07:09 -0700 Subject: [PATCH] fix 0.16 update typo --- sqlite.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite.zig b/sqlite.zig index a688d51..bc1ab7d 100644 --- a/sqlite.zig +++ b/sqlite.zig @@ -1454,7 +1454,7 @@ pub fn Iterator(comptime Type: type) type { }, inline .@"struct", .@"union" => |TI| { if (TI.layout == .@"packed" and !@hasField(FieldType, "readField")) { - const Backing = @Int(.signedness, @bitSizeOf(FieldType)); + const Backing = @Int(.unsigned, @bitSizeOf(FieldType)); return @bitCast(self.readInt(Backing, i)); }