diff options
| author | 2021-08-11 22:32:06 -0700 | |
|---|---|---|
| committer | 2021-08-11 22:32:06 -0700 | |
| commit | 3f3b607d705a3e0871a030946b62c402ee20de0c (patch) | |
| tree | 747eefd64493997eae3acbd5ca05551bac0998ce /sqlite.zig | |
| parent | git- ignore zig-cache and zig-out (diff) | |
| download | zig-sqlite-3f3b607d705a3e0871a030946b62c402ee20de0c.tar.gz zig-sqlite-3f3b607d705a3e0871a030946b62c402ee20de0c.tar.xz zig-sqlite-3f3b607d705a3e0871a030946b62c402ee20de0c.zip | |
adding allocator to Db.QueryOptions was a mistake
Diffstat (limited to 'sqlite.zig')
| -rw-r--r-- | sqlite.zig | 1 |
1 files changed, 0 insertions, 1 deletions
| @@ -492,7 +492,6 @@ pub const Db = struct { | |||
| 492 | pub const QueryOptions = struct { | 492 | pub const QueryOptions = struct { |
| 493 | /// if provided, diags will be populated in case of failures. | 493 | /// if provided, diags will be populated in case of failures. |
| 494 | diags: ?*Diagnostics = null, | 494 | diags: ?*Diagnostics = null, |
| 495 | allocator: *std.mem.Allocator = undefined, | ||
| 496 | }; | 495 | }; |
| 497 | 496 | ||
| 498 | /// Iterator allows iterating over a result set. | 497 | /// Iterator allows iterating over a result set. |