diff --git a/src/cppcheck.cpp b/src/cppcheck.cpp index ecf790a75..a4025e774 100644 --- a/src/cppcheck.cpp +++ b/src/cppcheck.cpp @@ -334,9 +334,6 @@ void CppCheck::checkFile(const std::string &code, const char FileName[]) // Tokenize the file { - std::cout << "code..\n" << code << std::endl; - - std::istringstream istr(code); _tokenizer.tokenize(istr, FileName); } @@ -368,7 +365,7 @@ void CppCheck::checkFile(const std::string &code, const char FileName[]) _tokenizer.simplifyTokenList(); // Write simplified token list to a file.. - std::cout << _tokenizer.tokens()->stringifyList(true) << std::endl; + //std::cout << _tokenizer.tokens()->stringifyList(true) << std::endl; if (_settings._unusedFunctions) _checkFunctionUsage.parseTokens(_tokenizer);