diff options
Diffstat (limited to '')
| -rw-r--r-- | sqlite.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -596,7 +596,7 @@ pub fn Iterator(comptime Type: type) type { | |||
| 596 | .Void => {}, | 596 | .Void => {}, |
| 597 | .Array => try self.readArray(FieldType, i), | 597 | .Array => try self.readArray(FieldType, i), |
| 598 | .Pointer => try self.readPointer(FieldType, options.allocator, i), | 598 | .Pointer => try self.readPointer(FieldType, options.allocator, i), |
| 599 | else => @compileError("cannot populate field " ++ field.name ++ " of type " ++ @typeName(FieldType)), | 599 | else => @compileError("cannot populate field of type " ++ @typeName(FieldType)), |
| 600 | }, | 600 | }, |
| 601 | }; | 601 | }; |
| 602 | } | 602 | } |