diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:25:21 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:25:21 +0000 |
commit | f59edb96b2d0bfe612b732f19519ab84bb995bd4 (patch) | |
tree | 6c87a503dec80d927790674f7ee0774b575c24f8 /tools/libclang/Indexing.cpp | |
parent | 30a2e16f6c27f888dd11eba6bbbae1e980078fcb (diff) |
Sort #include lines for tools/...
Completely automated with sort_includes.py
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169240 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/Indexing.cpp')
-rw-r--r-- | tools/libclang/Indexing.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/tools/libclang/Indexing.cpp b/tools/libclang/Indexing.cpp index 714a36ebdd..a907c14e22 100644 --- a/tools/libclang/Indexing.cpp +++ b/tools/libclang/Indexing.cpp @@ -8,25 +8,24 @@ //===----------------------------------------------------------------------===// #include "IndexingContext.h" +#include "CIndexDiagnostic.h" +#include "CIndexer.h" #include "CXCursor.h" #include "CXSourceLocation.h" -#include "CXTranslationUnit.h" #include "CXString.h" -#include "CIndexDiagnostic.h" -#include "CIndexer.h" - +#include "CXTranslationUnit.h" +#include "clang/AST/ASTConsumer.h" +#include "clang/AST/DeclVisitor.h" #include "clang/Frontend/ASTUnit.h" -#include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/CompilerInstance.h" +#include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/FrontendAction.h" #include "clang/Frontend/Utils.h" -#include "clang/Sema/SemaConsumer.h" -#include "clang/AST/ASTConsumer.h" -#include "clang/AST/DeclVisitor.h" -#include "clang/Lex/Preprocessor.h" #include "clang/Lex/PPCallbacks.h" -#include "llvm/Support/MemoryBuffer.h" +#include "clang/Lex/Preprocessor.h" +#include "clang/Sema/SemaConsumer.h" #include "llvm/Support/CrashRecoveryContext.h" +#include "llvm/Support/MemoryBuffer.h" using namespace clang; using namespace cxstring; |