diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-07-20 19:40:51 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-07-20 19:40:51 +0100 |
| commit | 9a3b4167bb8495f9422ffa5cb242198fed3a315b (patch) | |
| tree | d5e1f4fe1ff66282cb67896c7c432a487b5a55df /src/checker.cpp | |
| parent | 13bc6eeea4cc89b06bcfc3aaef7bfb85c1cb5b01 (diff) | |
Fix polymorphic element types usage; Empty `union` as opaque type
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index 0f628a84a..4c77f25ee 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -185,7 +185,7 @@ struct DeclInfo { AstNode * type_expr; AstNode * init_expr; - AstNode * proc_lit; // AstNode_ProcLit + AstNode * proc_lit; // AstNode_ProcLit Type * gen_proc_type; // Precalculated Map<bool> deps; // Key: Entity * |