Commit e4d4ee7ecedea4b4d7ef90aa36fc4e70a1fa516e
Fix includes in Finder.hpp
Author: xaizek
Author date (UTC): 2014-04-06 20:43
Committer name: xaizek
Committer date (UTC): 2014-04-06 20:43
Parent(s): aea6460b1bcb7557e52048ded971ddb94fda1d67
Signing key:
Tree: 4064f84f1981d42e8a0ec05af366d2511df17fc5
File src/Finder.cpp changed (mode: 100644) (index 5a6363b..aa790ec) |
27 |
27 |
#include <clang/AST/Decl.h> |
#include <clang/AST/Decl.h> |
28 |
28 |
|
|
29 |
29 |
#include <clang/ASTMatchers/ASTMatchFinder.h> |
#include <clang/ASTMatchers/ASTMatchFinder.h> |
|
30 |
|
#include <clang/ASTMatchers/ASTMatchers.h> |
30 |
31 |
|
|
31 |
32 |
#include "FuncInfo.hpp" |
#include "FuncInfo.hpp" |
32 |
33 |
|
|
File src/Finder.hpp changed (mode: 100644) (index 6a3e3ee..818187d) |
23 |
23 |
|
|
24 |
24 |
#include <memory> |
#include <memory> |
25 |
25 |
|
|
26 |
|
#include <clang/ASTMatchers/ASTMatchFinder.h> |
|
|
26 |
|
namespace clang |
|
27 |
|
{ |
|
28 |
|
namespace ast_matchers |
|
29 |
|
{ |
|
30 |
|
class MatchFinder; |
|
31 |
|
} |
|
32 |
|
} |
27 |
33 |
|
|
28 |
34 |
class Finder |
class Finder |
29 |
35 |
{ |
{ |
File src/unused-funcs.cpp changed (mode: 100644) (index 1d2728c..b31b2be) |
22 |
22 |
|
|
23 |
23 |
#include <clang/Basic/Diagnostic.h> |
#include <clang/Basic/Diagnostic.h> |
24 |
24 |
|
|
|
25 |
|
#include <clang/ASTMatchers/ASTMatchFinder.h> |
|
26 |
|
|
25 |
27 |
#include <clang/Tooling/CommonOptionsParser.h> |
#include <clang/Tooling/CommonOptionsParser.h> |
26 |
28 |
#include <clang/Tooling/Tooling.h> |
#include <clang/Tooling/Tooling.h> |
27 |
29 |
|
|