diff options
| author | gingerBill <ginger.bill.22@gmail.com> | 2016-08-19 23:35:09 +0100 |
|---|---|---|
| committer | gingerBill <ginger.bill.22@gmail.com> | 2016-08-19 23:35:09 +0100 |
| commit | 680274b6f1f1e36e27c94b4e60895338d413c84a (patch) | |
| tree | 1d68b9062ab743950878b41fe2cb6f2e81157462 /src/checker/stmt.cpp | |
| parent | 745237459abb3fa91405fdba3895bd9f810bc9d2 (diff) | |
Implicit Context and #thread_local
Diffstat (limited to 'src/checker/stmt.cpp')
| -rw-r--r-- | src/checker/stmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/checker/stmt.cpp b/src/checker/stmt.cpp index 54ef410c4..197ab1bb0 100644 --- a/src/checker/stmt.cpp +++ b/src/checker/stmt.cpp @@ -119,7 +119,9 @@ b32 check_is_assignable_to(Checker *c, Operand *operand, Type *type) { } } + return false; + } @@ -742,8 +744,6 @@ void check_stmt(Checker *c, AstNode *node, u32 flags) { } case_end; - -// Declarations case_ast_node(vd, VarDecl, node); isize entity_count = vd->name_count; isize entity_index = 0; |