| author | |
| committer | |
| log | c3bcc53de6ce937c74c927d9b146e226f0fc23b0 |
| tree | 4cb7ceccf7c1e082ab613ff65178d810ee08ee35 |
| parent | 43788aee132326a7e3c02ef862c63368e5670fc4 |
| signature |
1 files changed, 2 insertions(+), 1 deletions(-)
src/sqlite3.zig+2-1| ... | ... | @@ -8,7 +8,8 @@ const Self = @This(); |
| 8 | 8 | db: sqlite.Db = undefined, |
| 9 | 9 | mutex: std.Thread.Mutex, |
| 10 | 10 | |
| 11 | pub fn connect(path: [:0]const u8) !Self { | |
| 11 | pub fn connect(allocator: std.mem.Allocator, path: [:0]const u8) !Self { | |
| 12 | _ = allocator; | |
| 12 | 13 | return Self{ |
| 13 | 14 | .db = try sqlite.Db.init(.{ |
| 14 | 15 | .mode = sqlite.Db.Mode{ .File = path }, |