Skip to content

Commit 3445a95

Browse files
committed
ValueFlow: Improved debug output.
1 parent 4e4db50 commit 3445a95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/token.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1722,9 +1722,9 @@ void Token::printValueFlow(bool xml, std::ostream &out) const
17221722
if (value.isImpossible())
17231723
out << "!";
17241724
if (value.bound == ValueFlow::Value::Bound::Lower)
1725-
out << ">";
1725+
out << ">=";
17261726
if (value.bound == ValueFlow::Value::Bound::Upper)
1727-
out << "<";
1727+
out << "<=";
17281728
switch (value.valueType) {
17291729
case ValueFlow::Value::INT:
17301730
if (tok->valueType() && tok->valueType()->sign == ValueType::UNSIGNED)

0 commit comments

Comments
 (0)