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
-2
View File
@@ -269,8 +269,6 @@ clone_node :: proc(node: ^Node) -> ^Node {
case Enum_Type:
r.base_type = clone(r.base_type);
r.fields = clone(r.fields);
case Bit_Field_Type:
r.fields = clone(r.fields);
case Bit_Set_Type:
r.elem = clone(r.elem);
r.underlying = clone(r.underlying);