aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index 86e2dcf68..48f2f8617 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -232,7 +232,7 @@ gb_internal Ast *clone_ast(Ast *node, AstFile *f) {
break;
case Ast_OrBranchExpr:
n->OrBranchExpr.label = clone_ast(n->OrBranchExpr.label, f);
- n->OrBranchExpr.expr = clone_ast(n->OrBranchExpr.expr, f);
+ n->OrBranchExpr.expr = clone_ast(n->OrBranchExpr.expr, f);
break;
case Ast_TypeAssertion:
n->TypeAssertion.expr = clone_ast(n->TypeAssertion.expr, f);