From 6282b5dee81f95991285fa28359effa3d8ed6ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 14 Feb 2009 08:49:20 +0000 Subject: [PATCH] debug output: commented out the code for writing token listing --- src/cppcheck.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cppcheck.cpp b/src/cppcheck.cpp index 7d15edcce..f449d9f16 100644 --- a/src/cppcheck.cpp +++ b/src/cppcheck.cpp @@ -37,7 +37,6 @@ #include #include #include -#include //--------------------------------------------------------------------------- @@ -335,7 +334,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);