Fix atomic.odin

This commit is contained in:
gingerBill
2018-10-20 12:55:48 +01:00
parent 3742d9e7e9
commit 72f4186b21
4 changed files with 15 additions and 19 deletions
+1 -2
View File
@@ -714,8 +714,7 @@ Entity *implicit_entity_of_node(Ast *clause) {
return nullptr;
}
// Will return nullptr if not found
Entity *entity_of_node(CheckerInfo *i, Ast *expr) {
Entity *entity_of_node(Ast *expr) {
expr = unparen_expr(expr);
switch (expr->kind) {
case_ast_node(ident, Ident, expr);