[BugFix] Expression: always add space char before unit when converting to string, fixes #8562

This commit is contained in:
0penBrain
2023-02-23 17:30:32 +01:00
committed by wwmayer
parent 9bc526c076
commit 09c1b9ce90

View File

@@ -1578,6 +1578,7 @@ void OperatorExpression::_toString(std::ostream &s, bool persistent,int) const
s << " >= ";
break;
case UNIT:
s << " ";
break;
default:
assert(0);