Further include cleanup
This commit is contained in:
parent
1fc1ff1993
commit
adf38fcfd0
|
@ -22,6 +22,7 @@
|
|||
#include "path.h"
|
||||
#include "settings.h"
|
||||
#include "timer.h"
|
||||
#include "check.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#include "pathmatch.h"
|
||||
#include <algorithm>
|
||||
#include <ctype.h> // Borland: tolower
|
||||
#include <ctype.h>
|
||||
|
||||
PathMatch::PathMatch(const std::vector<std::string> &masks, bool caseSensitive)
|
||||
: _masks(masks), _caseSensitive(caseSensitive)
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include "preprocessor.h" // Preprocessor
|
||||
#include "tokenize.h" // Tokenizer
|
||||
#include "checkunusedfunctions.h"
|
||||
|
||||
#include "check.h"
|
||||
#include "path.h"
|
||||
|
|
|
@ -24,12 +24,13 @@
|
|||
#include "config.h"
|
||||
#include "settings.h"
|
||||
#include "errorlogger.h"
|
||||
#include "checkunusedfunctions.h"
|
||||
|
||||
#include <string>
|
||||
#include <list>
|
||||
#include <istream>
|
||||
|
||||
class Tokenizer;
|
||||
|
||||
/// @addtogroup Core
|
||||
/// @{
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include <set>
|
||||
#include <string>
|
||||
#include <list>
|
||||
#include <algorithm>
|
||||
|
||||
class TokenList;
|
||||
namespace tinyxml2 {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "errorlogger.h"
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <ostream>
|
||||
#include <climits>
|
||||
#include <iostream>
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <string>
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <deque>
|
||||
#include <set>
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include "templatesimplifier.h"
|
||||
#include "mathlib.h"
|
||||
#include "token.h"
|
||||
#include "tokenlist.h"
|
||||
#include "tokenize.h"
|
||||
#include "errorlogger.h"
|
||||
#include "settings.h"
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <sstream>
|
||||
#include <map>
|
||||
#include <stack>
|
||||
#include <algorithm>
|
||||
|
||||
bool Token::_isCPP = true;
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "token.h"
|
||||
#include "tokenlist.h"
|
||||
|
||||
#include <iostream>
|
||||
//#include <iostream>
|
||||
#include <stack>
|
||||
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include "cppcheckexecutor.h"
|
||||
#include "testsuite.h"
|
||||
#include "path.h"
|
||||
#include "check.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <list>
|
||||
|
|
Loading…
Reference in New Issue