We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e4db50 commit 3445a95Copy full SHA for 3445a95
1 file changed
lib/token.cpp
@@ -1722,9 +1722,9 @@ void Token::printValueFlow(bool xml, std::ostream &out) const
1722
if (value.isImpossible())
1723
out << "!";
1724
if (value.bound == ValueFlow::Value::Bound::Lower)
1725
- out << ">";
+ out << ">=";
1726
if (value.bound == ValueFlow::Value::Bound::Upper)
1727
- out << "<";
+ out << "<=";
1728
switch (value.valueType) {
1729
case ValueFlow::Value::INT:
1730
if (tok->valueType() && tok->valueType()->sign == ValueType::UNSIGNED)
0 commit comments