summaryrefslogtreecommitdiff
path: root/sqlite.zig
diff options
context:
space:
mode:
authorGravatar Meghan Denny2021-08-11 22:32:06 -0700
committerGravatar Meghan Denny2021-08-11 22:32:06 -0700
commit3f3b607d705a3e0871a030946b62c402ee20de0c (patch)
tree747eefd64493997eae3acbd5ca05551bac0998ce /sqlite.zig
parentgit- ignore zig-cache and zig-out (diff)
downloadzig-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.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/sqlite.zig b/sqlite.zig
index 7ba64ba..2061739 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -492,7 +492,6 @@ pub const Db = struct {
492pub const QueryOptions = struct { 492pub 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.