Browse Source

Remove unneeded semicolons

gingerBill 3 years ago
parent
commit
b6b3377786
1 changed files with 3 additions and 3 deletions
  1. 3 3
      core/odin/parser/parser.odin

+ 3 - 3
core/odin/parser/parser.odin

@@ -2676,13 +2676,13 @@ parse_operand :: proc(p: ^Parser, lhs: bool) -> ^ast.Expr {
 		p.expr_level = prev_level
 		p.expr_level = prev_level
 
 
 		if is_no_nil && is_maybe {
 		if is_no_nil && is_maybe {
-			error(p, p.curr_tok.pos, "#maybe and #no_nil cannot be applied together");
+			error(p, p.curr_tok.pos, "#maybe and #no_nil cannot be applied together")
 		}
 		}
 		if is_no_nil && is_shared_nil {
 		if is_no_nil && is_shared_nil {
-			error(p, p.curr_tok.pos, "#shared_nil and #no_nil cannot be applied together");
+			error(p, p.curr_tok.pos, "#shared_nil and #no_nil cannot be applied together")
 		}
 		}
 		if is_shared_nil && is_maybe {
 		if is_shared_nil && is_maybe {
-			error(p, p.curr_tok.pos, "#maybe and #shared_nil cannot be applied together");
+			error(p, p.curr_tok.pos, "#maybe and #shared_nil cannot be applied together")
 		}
 		}
 
 
 		union_kind := ast.Union_Type_Kind.Normal
 		union_kind := ast.Union_Type_Kind.Normal