Fix bug with union literal checking crashing the compiler

This commit is contained in:
Ginger Bill
2017-04-18 21:20:41 +01:00
parent 813a028ed0
commit 95692fda52
4 changed files with 25 additions and 14 deletions
+2 -2
View File
@@ -170,8 +170,8 @@ Token make_token_ident(String s) {
typedef struct ErrorCollector {
TokenPos prev;
i64 count;
i64 warning_count;
i64 count;
i64 warning_count;
gbMutex mutex;
} ErrorCollector;