mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 06:38:47 +00:00
Remove usage of do in core library
This commit is contained in:
@@ -461,7 +461,9 @@ unparen_expr :: proc(expr: ^Expr) -> (val: ^Expr) {
|
||||
}
|
||||
for {
|
||||
e, ok := val.derived.(Paren_Expr);
|
||||
if !ok do break;
|
||||
if !ok {
|
||||
break;
|
||||
}
|
||||
val = e.expr;
|
||||
}
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user