From ae124cb36515394effbfd8e6970deec40cecfa8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 26 Jul 2015 16:32:31 +0200 Subject: [PATCH] ValueFlow: Attempt to make --debug output easier to understand by using words --- lib/token.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/token.cpp b/lib/token.cpp index ec5f21641..2ec8b3fbe 100644 --- a/lib/token.cpp +++ b/lib/token.cpp @@ -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 << '{'; }