ValueFlow: Attempt to make --debug output easier to understand by using words

This commit is contained in:
Daniel Marjamäki 2015-07-26 16:32:31 +02:00
parent bc28b252bf
commit ae124cb365
1 changed files with 1 additions and 1 deletions

View File

@ -1312,7 +1312,7 @@ void Token::printValueFlow(bool xml, std::ostream &out) const
out << "Line " << tok->linenr() << std::endl;
line = tok->linenr();
if (!xml) {
out << " " << tok->str() << ' ' << (tok->values.front().isKnown() ? "= " : ": ");
out << " " << tok->str() << (tok->values.front().isKnown() ? " always " : " possible ");
if (tok->values.size() > 1U)
out << '{';
}