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/Tooling/TestVisitor.h | |
| parent | ed09f456e7e99076fc3490cde3d59201f3328c12 (diff) | |
| download | bcm5719-llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.tar.gz bcm5719-llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.zip | |
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/Tooling/TestVisitor.h')
| -rw-r--r-- | clang/unittests/Tooling/TestVisitor.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/unittests/Tooling/TestVisitor.h b/clang/unittests/Tooling/TestVisitor.h index 8333c24a688..ce3246a902f 100644 --- a/clang/unittests/Tooling/TestVisitor.h +++ b/clang/unittests/Tooling/TestVisitor.h @@ -15,15 +15,14 @@ #ifndef LLVM_CLANG_TEST_VISITOR_H #define LLVM_CLANG_TEST_VISITOR_H -#include <vector> - -#include "clang/AST/ASTContext.h" #include "clang/AST/ASTConsumer.h" +#include "clang/AST/ASTContext.h" #include "clang/AST/RecursiveASTVisitor.h" -#include "clang/Frontend/FrontendAction.h" #include "clang/Frontend/CompilerInstance.h" +#include "clang/Frontend/FrontendAction.h" #include "clang/Tooling/Tooling.h" #include "gtest/gtest.h" +#include <vector> namespace clang { |

