diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:53:37 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:53:37 +0000 |
commit | 7cc315ccf80382fab7674735fbfda95990d28f8e (patch) | |
tree | d22956e7ee4d11bf880151f1525d59e5dfe235ac | |
parent | 1050e8b2252d89a0004a6fd25a58dab88b5ee625 (diff) |
Really sort the #include lines in unittests/...
I forgot to re-sort after fixing main module headers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169244 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | unittests/AST/CommentLexer.cpp | 2 | ||||
-rw-r--r-- | unittests/AST/CommentParser.cpp | 2 | ||||
-rw-r--r-- | unittests/Frontend/FrontendActionTest.cpp | 2 | ||||
-rw-r--r-- | unittests/Lex/LexerTest.cpp | 2 | ||||
-rw-r--r-- | unittests/Lex/PPConditionalDirectiveRecordTest.cpp | 2 | ||||
-rw-r--r-- | unittests/Tooling/RefactoringCallbacksTest.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/unittests/AST/CommentLexer.cpp b/unittests/AST/CommentLexer.cpp index f2167e042b..c496176a36 100644 --- a/unittests/AST/CommentLexer.cpp +++ b/unittests/AST/CommentLexer.cpp @@ -8,11 +8,11 @@ //===----------------------------------------------------------------------===// #include "clang/AST/CommentLexer.h" -#include "clang/Basic/SourceManager.h" #include "clang/AST/CommentCommandTraits.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/DiagnosticOptions.h" #include "clang/Basic/FileManager.h" +#include "clang/Basic/SourceManager.h" #include "llvm/ADT/STLExtras.h" #include "gtest/gtest.h" #include <vector> diff --git a/unittests/AST/CommentParser.cpp b/unittests/AST/CommentParser.cpp index f9bf58c92e..343d32d2c6 100644 --- a/unittests/AST/CommentParser.cpp +++ b/unittests/AST/CommentParser.cpp @@ -8,7 +8,6 @@ //===----------------------------------------------------------------------===// #include "clang/AST/CommentParser.h" -#include "clang/Basic/SourceManager.h" #include "clang/AST/Comment.h" #include "clang/AST/CommentCommandTraits.h" #include "clang/AST/CommentLexer.h" @@ -16,6 +15,7 @@ #include "clang/Basic/Diagnostic.h" #include "clang/Basic/DiagnosticOptions.h" #include "clang/Basic/FileManager.h" +#include "clang/Basic/SourceManager.h" #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Allocator.h" #include "gtest/gtest.h" diff --git a/unittests/Frontend/FrontendActionTest.cpp b/unittests/Frontend/FrontendActionTest.cpp index 5b36c67d59..e70c3b85e0 100644 --- a/unittests/Frontend/FrontendActionTest.cpp +++ b/unittests/Frontend/FrontendActionTest.cpp @@ -8,9 +8,9 @@ //===----------------------------------------------------------------------===// #include "clang/Frontend/FrontendAction.h" -#include "clang/AST/RecursiveASTVisitor.h" #include "clang/AST/ASTConsumer.h" #include "clang/AST/ASTContext.h" +#include "clang/AST/RecursiveASTVisitor.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/CompilerInvocation.h" #include "llvm/ADT/Triple.h" diff --git a/unittests/Lex/LexerTest.cpp b/unittests/Lex/LexerTest.cpp index ac29ea477b..7fca7f4e49 100644 --- a/unittests/Lex/LexerTest.cpp +++ b/unittests/Lex/LexerTest.cpp @@ -8,11 +8,11 @@ //===----------------------------------------------------------------------===// #include "clang/Lex/Lexer.h" -#include "clang/Basic/SourceManager.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/DiagnosticOptions.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/LangOptions.h" +#include "clang/Basic/SourceManager.h" #include "clang/Basic/TargetInfo.h" #include "clang/Basic/TargetOptions.h" #include "clang/Lex/HeaderSearch.h" diff --git a/unittests/Lex/PPConditionalDirectiveRecordTest.cpp b/unittests/Lex/PPConditionalDirectiveRecordTest.cpp index 8db5c9a28b..24e317ea00 100644 --- a/unittests/Lex/PPConditionalDirectiveRecordTest.cpp +++ b/unittests/Lex/PPConditionalDirectiveRecordTest.cpp @@ -8,11 +8,11 @@ //===----------------------------------------------------------------------===// #include "clang/Lex/PPConditionalDirectiveRecord.h" -#include "clang/Basic/SourceManager.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/DiagnosticOptions.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/LangOptions.h" +#include "clang/Basic/SourceManager.h" #include "clang/Basic/TargetInfo.h" #include "clang/Basic/TargetOptions.h" #include "clang/Lex/HeaderSearch.h" diff --git a/unittests/Tooling/RefactoringCallbacksTest.cpp b/unittests/Tooling/RefactoringCallbacksTest.cpp index 4659efa1e0..9e086d869a 100644 --- a/unittests/Tooling/RefactoringCallbacksTest.cpp +++ b/unittests/Tooling/RefactoringCallbacksTest.cpp @@ -8,9 +8,9 @@ //===----------------------------------------------------------------------===// #include "clang/Tooling/RefactoringCallbacks.h" -#include "clang/ASTMatchers/ASTMatchers.h" #include "RewriterTestContext.h" #include "clang/ASTMatchers/ASTMatchFinder.h" +#include "clang/ASTMatchers/ASTMatchers.h" #include "gtest/gtest.h" namespace clang { |