mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Remove bit_field keyword and parsing logic
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user