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 | 320d9666eeab256ecaec2e2c1676bbb40f3aac9e (patch) | |
tree | 7a266d7fe3968e36638134a11cfe74d11b563bf8 /clang/unittests/AST/CommentParser.cpp | |
parent | ed09f456e7e99076fc3490cde3d59201f3328c12 (diff) | |
download | llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.zip llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.tar.gz llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.tar.bz2 |
Sort the #include lines for unittests/...
I've tried to place sensible headers at the top as main-module headers.
llvm-svn: 169243
Diffstat (limited to 'clang/unittests/AST/CommentParser.cpp')
-rw-r--r-- | clang/unittests/AST/CommentParser.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/clang/unittests/AST/CommentParser.cpp b/clang/unittests/AST/CommentParser.cpp index 8fde247..f9bf58c 100644 --- a/clang/unittests/AST/CommentParser.cpp +++ b/clang/unittests/AST/CommentParser.cpp @@ -7,20 +7,19 @@ // //===----------------------------------------------------------------------===// +#include "clang/AST/CommentParser.h" #include "clang/Basic/SourceManager.h" -#include "clang/Basic/FileManager.h" -#include "clang/Basic/Diagnostic.h" -#include "clang/Basic/DiagnosticOptions.h" #include "clang/AST/Comment.h" +#include "clang/AST/CommentCommandTraits.h" #include "clang/AST/CommentLexer.h" -#include "clang/AST/CommentParser.h" #include "clang/AST/CommentSema.h" -#include "clang/AST/CommentCommandTraits.h" +#include "clang/Basic/Diagnostic.h" +#include "clang/Basic/DiagnosticOptions.h" +#include "clang/Basic/FileManager.h" #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Allocator.h" -#include <vector> - #include "gtest/gtest.h" +#include <vector> using namespace llvm; using namespace clang; |