Tokenizer: only print AST in debug output if --verbose is used
This commit is contained in:
parent
b0cc46e98b
commit
8a6bb46958
|
@ -3877,7 +3877,8 @@ void Tokenizer::printDebugOutput() const
|
|||
_symbolDatabase->printOut("Symbol database");
|
||||
}
|
||||
|
||||
list.front()->printAst(_settings->_verbose, _settings->_xml, std::cout);
|
||||
if (_settings->_verbose)
|
||||
list.front()->printAst(_settings->_verbose, _settings->_xml, std::cout);
|
||||
|
||||
list.front()->printValueFlow(_settings->_xml, std::cout);
|
||||
|
||||
|
|
Loading…
Reference in New Issue