*** no comment ***
This commit is contained in:
parent
022594bb2f
commit
80c472733b
1 changed files with 4 additions and 1 deletions
|
|
@ -404,7 +404,10 @@ void value_expr_t::compute(value_t& result, const details_t& details) const
|
||||||
|
|
||||||
case O_NOT:
|
case O_NOT:
|
||||||
left->compute(result, details);
|
left->compute(result, details);
|
||||||
result.negate();
|
if (result)
|
||||||
|
result = 0L;
|
||||||
|
else
|
||||||
|
result = 1L;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case O_QUES: {
|
case O_QUES: {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue