From 4522bcd6801dce362109f74697efd0c4e0e759c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Wed, 4 Mar 2009 17:10:28 +0000 Subject: [PATCH] reverted accidental changes committed in [1330] --- src/cppcheck.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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);