Closed jderusse closed 4 years ago
In some case, compilation return always true or false. The MultiConstrain compiler optimize it by removing && true and || false. But if all constraints are ignored the compiler returns an empty string. This PR fix it.
true
false
&& true
|| false
Thanks
In some case, compilation return always
true
orfalse
. The MultiConstrain compiler optimize it by removing&& true
and|| false
. But if all constraints are ignored the compiler returns an empty string. This PR fix it.