Remove () grouping for foreign_library

This commit is contained in:
Ginger Bill
2017-08-27 19:24:30 +01:00
parent b9e347ef50
commit 2d20bde495
12 changed files with 133 additions and 370 deletions
+3 -3
View File
@@ -6227,9 +6227,9 @@ void ir_build_stmt_internal(irProcedure *proc, AstNode *node) {
case_ast_node(us, UsingStmt, node);
for_array(i, us->list) {
AstNode *decl = unparen_expr(us->list[i]);
if (decl->kind == AstNode_GenDecl) {
ir_build_stmt(proc, decl);
}
// if (decl->kind == AstNode_GenDecl) {
// ir_build_stmt(proc, decl);
// }
}
case_end;