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 | cc0694c8a4b8c4c4d28302b473d4af4d9224f6a2 (patch) | |
tree | 0cf0a40ec182de654d313ffa9732824e89256b50 /clang/tools/libclang/CIndex.cpp | |
parent | 9b1773b517e177eaf34b3342994b4ab688934e8b (diff) | |
download | bcm5719-llvm-cc0694c8a4b8c4c4d28302b473d4af4d9224f6a2.tar.gz bcm5719-llvm-cc0694c8a4b8c4c4d28302b473d4af4d9224f6a2.zip |
Sort #include lines for tools/...
Completely automated with sort_includes.py
llvm-svn: 169240
Diffstat (limited to 'clang/tools/libclang/CIndex.cpp')
-rw-r--r-- | clang/tools/libclang/CIndex.cpp | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/clang/tools/libclang/CIndex.cpp b/clang/tools/libclang/CIndex.cpp index 81179bd455a..c0f3f571a4a 100644 --- a/clang/tools/libclang/CIndex.cpp +++ b/clang/tools/libclang/CIndex.cpp @@ -13,40 +13,38 @@ //===----------------------------------------------------------------------===// #include "CIndexer.h" +#include "CIndexDiagnostic.h" #include "CXComment.h" #include "CXCursor.h" -#include "CXTranslationUnit.h" +#include "CXSourceLocation.h" #include "CXString.h" +#include "CXTranslationUnit.h" #include "CXType.h" -#include "CXSourceLocation.h" -#include "CIndexDiagnostic.h" #include "CursorVisitor.h" - -#include "clang/Basic/Version.h" - #include "clang/AST/StmtVisitor.h" #include "clang/Basic/Diagnostic.h" +#include "clang/Basic/Version.h" #include "clang/Frontend/ASTUnit.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/FrontendDiagnostic.h" -#include "clang/Lex/Lexer.h" #include "clang/Lex/HeaderSearch.h" +#include "clang/Lex/Lexer.h" #include "clang/Lex/PreprocessingRecord.h" #include "clang/Lex/Preprocessor.h" -#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/Optional.h" +#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringSwitch.h" -#include "llvm/Support/SaveAndRestore.h" +#include "llvm/Support/Compiler.h" #include "llvm/Support/CrashRecoveryContext.h" -#include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/MemoryBuffer.h" -#include "llvm/Support/raw_ostream.h" -#include "llvm/Support/Timer.h" #include "llvm/Support/Mutex.h" +#include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/Program.h" +#include "llvm/Support/SaveAndRestore.h" #include "llvm/Support/Signals.h" #include "llvm/Support/Threading.h" -#include "llvm/Support/Compiler.h" +#include "llvm/Support/Timer.h" +#include "llvm/Support/raw_ostream.h" using namespace clang; using namespace clang::cxcursor; |