mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +00:00
Accept enums and structs defined at global scope
This commit is contained in:
parent
956d754804
commit
80daf736ec
1 changed files with 2 additions and 0 deletions
|
@ -79,6 +79,8 @@ translation_unit(X) ::= error. { X = NULL; }
|
|||
|
||||
%type external_declaration {ZCC_TreeNode *}
|
||||
external_declaration(X) ::= class_definition(A). { X = A; }
|
||||
external_declaration(X) ::= struct_def(A). { X = A; }
|
||||
external_declaration(X) ::= enum_def(A). { X = A; }
|
||||
|
||||
/* Optional bits. */
|
||||
opt_semicolon ::= .
|
||||
|
|
Loading…
Reference in a new issue