diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-20 16:28:04 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-20 16:28:04 +0000 |
commit | 32fbe31246fa498c4170411dfda3ae85b7c39c4e (patch) | |
tree | 22b7aa0b9b223a4ae57b1fc8ae656357eaba9ee2 /clang/tools/libclang/Indexing.cpp | |
parent | 469214426ac525c12ec83d6a3b2e86f0ded1e57f (diff) | |
download | bcm5719-llvm-32fbe31246fa498c4170411dfda3ae85b7c39c4e.tar.gz bcm5719-llvm-32fbe31246fa498c4170411dfda3ae85b7c39c4e.zip |
Extract the (InputKind, std::string) pair used to describe inputs to
the front end into its own class, FrontendInputFile, to make it easier
to introduce new per-input data. No functionality change.
llvm-svn: 148546
Diffstat (limited to 'clang/tools/libclang/Indexing.cpp')
-rw-r--r-- | clang/tools/libclang/Indexing.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/tools/libclang/Indexing.cpp b/clang/tools/libclang/Indexing.cpp index 6bffc6b97aa..c42ef2308a7 100644 --- a/clang/tools/libclang/Indexing.cpp +++ b/clang/tools/libclang/Indexing.cpp @@ -18,6 +18,7 @@ #include "clang/Frontend/ASTUnit.h" #include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/CompilerInstance.h" +#include "clang/Frontend/FrontendAction.h" #include "clang/Frontend/Utils.h" #include "clang/Sema/SemaConsumer.h" #include "clang/AST/ASTConsumer.h" |