diff options
| author | 2022-12-09 13:46:10 +0100 | |
|---|---|---|
| committer | 2022-12-09 13:46:10 +0100 | |
| commit | 3cfd3cac1dfaa8fd1d6008d92063b1f546f9a6d9 (patch) | |
| tree | d5de4bfbcc866e30972927f630d85e360af8d853 /query.zig | |
| parent | readme: add a note about the maintenance status (diff) | |
| parent | fix for stage2 (diff) | |
| download | zig-sqlite-3cfd3cac1dfaa8fd1d6008d92063b1f546f9a6d9.tar.gz zig-sqlite-3cfd3cac1dfaa8fd1d6008d92063b1f546f9a6d9.tar.xz zig-sqlite-3cfd3cac1dfaa8fd1d6008d92063b1f546f9a6d9.zip | |
Merge branch 'stage2'
Diffstat (limited to '')
| -rw-r--r-- | query.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -168,7 +168,7 @@ pub fn ParsedQueryState(comptime max_query_len: usize) type { | |||
| 168 | }; | 168 | }; |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | fn ParseType(type_info: []const u8) type { | 171 | fn ParseType(comptime type_info: []const u8) type { |
| 172 | if (type_info.len <= 0) @compileError("invalid type info " ++ type_info); | 172 | if (type_info.len <= 0) @compileError("invalid type info " ++ type_info); |
| 173 | 173 | ||
| 174 | // Integer | 174 | // Integer |