We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7159aae commit d683747Copy full SHA for d683747
sqlite.zig
@@ -1471,7 +1471,7 @@ pub fn Iterator(comptime Type: type) type {
1471
inline .@"struct", .@"union" => |TI| {
1472
if (TI.layout == .@"packed" and !@hasField(FieldType, "readField")) {
1473
const Backing = @Type(.{ .int = .{ .signedness = .unsigned, .bits = @bitSizeOf(FieldType) } });
1474
- return @bitCast(try self.readInt(Backing, i));
+ return @bitCast(self.readInt(Backing, i));
1475
}
1476
1477
const inner_value = try self.readField(FieldType.BaseType, options, i);
0 commit comments