mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-25 07:04:58 -07:00
Remove () grouping for foreign_library
This commit is contained in:
+3
-3
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user