requiresCore parsing

This commit is contained in:
Robin Voetter
2020-06-12 04:05:23 +02:00
parent ff9dff6544
commit f055759972
2 changed files with 16 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ pub const TypeInfo = union(enum) {
alias: []const u8, // Alias of another declaration
pointer: Pointer,
array: Array,
opaque: void,
opaque,
foreign: Foreign
};
@@ -131,7 +131,7 @@ pub const Extension = struct {
};
pub const Promotion = union(enum) {
none: void,
none,
feature: FeatureLevel,
extension: []const u8,
};