Removed recursive member parsing nonsense from type section

This commit is contained in:
Sasha Koshka 2022-08-20 12:50:32 -04:00
parent fc1568aece
commit 790e7e632e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ func (parser *ParsingOperation) parseBody () (err error) {
parser.tree.typeSections =
make(map[string] *TypeSection)
}
parser.tree.typeSections[section.root.name] = section
parser.tree.typeSections[section.name] = section
if err != nil { return }
case "face":
case "enum":