Further include cleanup

This commit is contained in:
PKEuS 2014-05-23 20:58:28 +02:00
parent 1fc1ff1993
commit adf38fcfd0
11 changed files with 9 additions and 7 deletions

View File

@ -22,6 +22,7 @@
#include "path.h" #include "path.h"
#include "settings.h" #include "settings.h"
#include "timer.h" #include "timer.h"
#include "check.h"
#include <algorithm> #include <algorithm>
#include <iostream> #include <iostream>

View File

@ -18,7 +18,7 @@
#include "pathmatch.h" #include "pathmatch.h"
#include <algorithm> #include <algorithm>
#include <ctype.h> // Borland: tolower #include <ctype.h>
PathMatch::PathMatch(const std::vector<std::string> &masks, bool caseSensitive) PathMatch::PathMatch(const std::vector<std::string> &masks, bool caseSensitive)
: _masks(masks), _caseSensitive(caseSensitive) : _masks(masks), _caseSensitive(caseSensitive)

View File

@ -19,6 +19,7 @@
#include "preprocessor.h" // Preprocessor #include "preprocessor.h" // Preprocessor
#include "tokenize.h" // Tokenizer #include "tokenize.h" // Tokenizer
#include "checkunusedfunctions.h"
#include "check.h" #include "check.h"
#include "path.h" #include "path.h"

View File

@ -24,12 +24,13 @@
#include "config.h" #include "config.h"
#include "settings.h" #include "settings.h"
#include "errorlogger.h" #include "errorlogger.h"
#include "checkunusedfunctions.h"
#include <string> #include <string>
#include <list> #include <list>
#include <istream> #include <istream>
class Tokenizer;
/// @addtogroup Core /// @addtogroup Core
/// @{ /// @{

View File

@ -30,7 +30,6 @@
#include <set> #include <set>
#include <string> #include <string>
#include <list> #include <list>
#include <algorithm>
class TokenList; class TokenList;
namespace tinyxml2 { namespace tinyxml2 {

View File

@ -25,7 +25,7 @@
#include "errorlogger.h" #include "errorlogger.h"
#include <string> #include <string>
#include <sstream> #include <ostream>
#include <climits> #include <climits>
#include <iostream> #include <iostream>

View File

@ -24,7 +24,6 @@
#include <string> #include <string>
#include <list> #include <list>
#include <vector> #include <vector>
#include <deque>
#include <set> #include <set>
#include <algorithm> #include <algorithm>

View File

@ -19,7 +19,6 @@
#include "templatesimplifier.h" #include "templatesimplifier.h"
#include "mathlib.h" #include "mathlib.h"
#include "token.h" #include "token.h"
#include "tokenlist.h"
#include "tokenize.h" #include "tokenize.h"
#include "errorlogger.h" #include "errorlogger.h"
#include "settings.h" #include "settings.h"

View File

@ -29,6 +29,7 @@
#include <sstream> #include <sstream>
#include <map> #include <map>
#include <stack> #include <stack>
#include <algorithm>
bool Token::_isCPP = true; bool Token::_isCPP = true;

View File

@ -24,7 +24,7 @@
#include "token.h" #include "token.h"
#include "tokenlist.h" #include "tokenlist.h"
#include <iostream> //#include <iostream>
#include <stack> #include <stack>

View File

@ -21,6 +21,7 @@
#include "cppcheckexecutor.h" #include "cppcheckexecutor.h"
#include "testsuite.h" #include "testsuite.h"
#include "path.h" #include "path.h"
#include "check.h"
#include <algorithm> #include <algorithm>
#include <list> #include <list>