summaryrefslogtreecommitdiff
path: root/query.zig
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2022-12-06 23:22:19 +0100
committerGravatar Vincent Rischmann2022-12-06 23:22:19 +0100
commita804978678cad1c864f1a437914e403faf6c6059 (patch)
treed5de4bfbcc866e30972927f630d85e360af8d853 /query.zig
parentbuild: don't use stage1 (diff)
downloadzig-sqlite-a804978678cad1c864f1a437914e403faf6c6059.tar.gz
zig-sqlite-a804978678cad1c864f1a437914e403faf6c6059.tar.xz
zig-sqlite-a804978678cad1c864f1a437914e403faf6c6059.zip
fix for stage2
Diffstat (limited to '')
-rw-r--r--query.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/query.zig b/query.zig
index 99b7d7c..fe4322a 100644
--- a/query.zig
+++ b/query.zig
@@ -168,7 +168,7 @@ pub fn ParsedQueryState(comptime max_query_len: usize) type {
168 }; 168 };
169} 169}
170 170
171fn ParseType(type_info: []const u8) type { 171fn 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