ExpressionParser: Add missing break in UnaryExpression value setting
This commit is contained in:
parent
ad9dae30a8
commit
9ad35cc986
|
@ -357,6 +357,8 @@ public:
|
||||||
{
|
{
|
||||||
case TOK_NOT:
|
case TOK_NOT:
|
||||||
inner->SetValue(1.0 - value);
|
inner->SetValue(1.0 - value);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
assert(false);
|
assert(false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue