Consume the closing curly brace in parseStruct

This commit is contained in:
Tristan B. Kildaire 2021-05-04 19:11:25 +02:00
parent 688fc34969
commit 931d136d74
1 changed files with 3 additions and 0 deletions

View File

@ -340,6 +340,9 @@ public final class Parser
/* Expect closing brace (sanity) */
expect(SymbolType.CCURLY, getCurrentToken());
/* Consume the closing curly brace */
nextToken();
gprintln("parseStruct(): Leave", DebugType.WARNING);