Remove bit_field keyword and parsing logic

This commit is contained in:
gingerBill
2021-02-23 15:29:54 +00:00
parent fe33a64b2e
commit 28f279329d
12 changed files with 1 additions and 165 deletions
-7
View File
@@ -387,13 +387,6 @@ walk :: proc(v: ^Visitor, node: ^Node) {
walk(v, n.base_type);
}
walk_expr_list(v, n.fields);
case Bit_Field_Type:
if n.align != nil {
walk(v, n.align);
}
for x in n.fields {
walk(v, x);
}
case Bit_Set_Type:
walk(v, n.elem);
if n.underlying != nil {