From b6b33777865239794a1f50e64659343e397ea289 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 24 Mar 2022 12:02:50 +0000 Subject: [PATCH] Remove unneeded semicolons --- core/odin/parser/parser.odin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/odin/parser/parser.odin b/core/odin/parser/parser.odin index 4be14f2cf..25eda6bed 100644 --- a/core/odin/parser/parser.odin +++ b/core/odin/parser/parser.odin @@ -2676,13 +2676,13 @@ parse_operand :: proc(p: ^Parser, lhs: bool) -> ^ast.Expr { p.expr_level = prev_level 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 { - 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 { - 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