Refactoring: Cleanup include that checkheaders reported as not needed

This commit is contained in:
Daniel Marjamäki 2010-07-26 22:05:17 +02:00
parent 17395b310d
commit 7c5219324e
5 changed files with 8 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#include <ctime>
#include <list>
#include <string>
#include "settings.h"
class Token;
class Tokenizer;

View File

@ -23,6 +23,7 @@
#include "filelister.h"
#include "path.h"
#include "errorlogger.h"
#include "settings.h"
#include <algorithm>
#include <stdexcept>

View File

@ -25,6 +25,8 @@
#include "preprocessor.h"
#include "tokenize.h"
#include "token.h"
#include "settings.h"
#include <map>
#include <string>
#include <sstream>

View File

@ -21,6 +21,8 @@
#include "testsuite.h"
#include "tokenize.h"
#include "token.h"
#include "settings.h"
#include <sstream>
extern std::ostringstream errout;

View File

@ -21,11 +21,12 @@
// the code for a known configuration, it generates the code for each configuration.
#include <cstring>
#include "testsuite.h"
#include "tokenize.h"
#include "token.h"
#include "classinfo.h"
#include "settings.h"
#include <cstring>
extern std::ostringstream errout;
class TestTokenizer : public TestFixture