diff options
| -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 |