restore accidentally deleted 'else'.

This commit is contained in:
Christoph Oelckers 2023-11-19 13:01:08 +01:00
parent 0b36beb10d
commit c73f805110

View file

@ -3861,7 +3861,7 @@ FxExpression *FxCompareRel::Resolve(FCompileContext& ctx)
}
ValueType = TypeString;
}
if (left->IsNumeric() && right->IsNumeric())
else if (left->IsNumeric() && right->IsNumeric())
{
if (left->IsInteger() && right->IsInteger())
{