diff options
| author | 2022-12-06 23:22:19 +0100 | |
|---|---|---|
| committer | 2022-12-06 23:22:19 +0100 | |
| commit | a804978678cad1c864f1a437914e403faf6c6059 (patch) | |
| tree | d5de4bfbcc866e30972927f630d85e360af8d853 | |
| parent | build: don't use stage1 (diff) | |
| download | zig-sqlite-a804978678cad1c864f1a437914e403faf6c6059.tar.gz zig-sqlite-a804978678cad1c864f1a437914e403faf6c6059.tar.xz zig-sqlite-a804978678cad1c864f1a437914e403faf6c6059.zip | |
fix for stage2
| -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 |