diff options
| author | 2020-10-30 00:26:11 +0100 | |
|---|---|---|
| committer | 2020-10-30 00:26:11 +0100 | |
| commit | 1263a6b89ec06ab6c051d62b9cc6338a9697ee37 (patch) | |
| tree | 337c58d4db3e9b94acd9ffab075a17bacf7530c7 | |
| parent | update readme (diff) | |
| download | zig-sqlite-1263a6b89ec06ab6c051d62b9cc6338a9697ee37.tar.gz zig-sqlite-1263a6b89ec06ab6c051d62b9cc6338a9697ee37.tar.xz zig-sqlite-1263a6b89ec06ab6c051d62b9cc6338a9697ee37.zip | |
remove unused code
Diffstat (limited to '')
| -rw-r--r-- | sqlite.zig | 5 |
1 files changed, 0 insertions, 5 deletions
| @@ -178,11 +178,6 @@ pub fn Statement(comptime opts: StatementOptions) type { | |||
| 178 | 178 | ||
| 179 | stmt: *c.sqlite3_stmt, | 179 | stmt: *c.sqlite3_stmt, |
| 180 | 180 | ||
| 181 | const BytesType = enum { | ||
| 182 | Text, | ||
| 183 | Blob, | ||
| 184 | }; | ||
| 185 | |||
| 186 | fn prepare(db: *Db, flags: c_uint, comptime query: []const u8) !Self { | 181 | fn prepare(db: *Db, flags: c_uint, comptime query: []const u8) !Self { |
| 187 | var stmt = blk: { | 182 | var stmt = blk: { |
| 188 | var tmp: ?*c.sqlite3_stmt = undefined; | 183 | var tmp: ?*c.sqlite3_stmt = undefined; |