From c46017f0dc2bda36f620a105fe2c40703a3cff8b Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Fri, 23 Jun 2023 00:26:32 +0200 Subject: [PATCH] Make MSVC happy about definite assignment. --- src/compiler/number.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/number.c b/src/compiler/number.c index fc637b08b..ee2fd8c80 100644 --- a/src/compiler/number.c +++ b/src/compiler/number.c @@ -109,7 +109,7 @@ bool expr_const_compare(const ExprConst *left, const ExprConst *right, BinaryOp case BINARYOP_EQ: return left_decl->enum_constant.ordinal == right_ordinal; default: - goto RETURN; + return false; } } case CONST_BYTES: