Make MSVC happy about definite assignment.

This commit is contained in:
Christoffer Lerno
2023-06-23 00:26:32 +02:00
parent 1bd729a4bb
commit c46017f0dc

View File

@@ -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: