diff options
| -rw-r--r-- | sqlite.zig | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -737,10 +737,10 @@ pub fn Iterator(comptime Type: type) type { | |||
| 737 | ret[size] = s; | 737 | ret[size] = s; |
| 738 | } | 738 | } |
| 739 | }, | 739 | }, |
| 740 | else => @compileError("cannot populate field " ++ field.name ++ " of type array of " ++ @typeName(arr.child)), | 740 | else => @compileError("cannot read into array of " ++ @typeName(arr.child)), |
| 741 | } | 741 | } |
| 742 | }, | 742 | }, |
| 743 | else => @compileError("cannot populate field " ++ field.name ++ " of type array of " ++ @typeName(arr.child)), | 743 | else => @compileError("cannot read into type " ++ @typeName(ret)), |
| 744 | } | 744 | } |
| 745 | return ret; | 745 | return ret; |
| 746 | } | 746 | } |