diff options
| author | gingerBill <bill@gingerbill.org> | 2018-08-15 15:44:41 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-08-15 15:44:41 +0100 |
| commit | b3ebff715a2e483ed1210b7eea70d60a75ae8c3b (patch) | |
| tree | 3e7b159d0c0366a23686f06419724e11daa33aaa /src/parser.hpp | |
| parent | 1ee60663bb9a6d3b5a5effb3028679928c77fa1a (diff) | |
Fix defer ir bug
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 5a2c9e05d..b25740315 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -483,7 +483,7 @@ AST_KIND(_TypeBegin, "", bool) \ }) \ AST_KIND(BitSetType, "bit set type", struct { \ Token token; \ - Ast * base_type; \ + Ast * base; \ }) \ AST_KIND(MapType, "map type", struct { \ Token token; \ |