update to latest zig: add c_char type (#1124)

* update to latest zig: add c_char type

* Bump version, add c_char to isTypeIdent
This commit is contained in:
Jakub Konka
2023-04-14 04:02:18 +02:00
committed by GitHub
parent 4111d28073
commit 5457cec8da
4 changed files with 7 additions and 1 deletions

View File

@@ -653,6 +653,7 @@ pub fn isTypeIdent(text: []const u8) bool {
.{"type"}, .{"anyerror"},
.{"comptime_int"}, .{"comptime_float"},
.{"anyframe"}, .{"anytype"},
.{"c_char"}
});
if (PrimitiveTypes.has(text)) return true;