Skip to content

Commit

Permalink
reverted accidental changes committed in [1330]
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Marjamäki committed Mar 4, 2009
1 parent 8b7a5dd commit 4522bcd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/cppcheck.cpp
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 4522bcd

Please sign in to comment.