diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:45:34 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:45:34 +0000 |
commit | 1050e8b2252d89a0004a6fd25a58dab88b5ee625 (patch) | |
tree | aa1af222bc1bad73e6034d0976e8fec4d6439821 /unittests/AST/CommentLexer.cpp | |
parent | e0c6e93dddf4503d9b12ce09d7ab6ea5d523499f (diff) |
Sort the #include lines for unittests/...
I've tried to place sensible headers at the top as main-module headers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/AST/CommentLexer.cpp')
-rw-r--r-- | unittests/AST/CommentLexer.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/unittests/AST/CommentLexer.cpp b/unittests/AST/CommentLexer.cpp index 2723a611e1..f2167e042b 100644 --- a/unittests/AST/CommentLexer.cpp +++ b/unittests/AST/CommentLexer.cpp @@ -7,16 +7,15 @@ // //===----------------------------------------------------------------------===// +#include "clang/AST/CommentLexer.h" #include "clang/Basic/SourceManager.h" -#include "clang/Basic/FileManager.h" +#include "clang/AST/CommentCommandTraits.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/DiagnosticOptions.h" -#include "clang/AST/CommentLexer.h" -#include "clang/AST/CommentCommandTraits.h" +#include "clang/Basic/FileManager.h" #include "llvm/ADT/STLExtras.h" -#include <vector> - #include "gtest/gtest.h" +#include <vector> using namespace llvm; using namespace clang; |