diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-19 08:09:44 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-19 08:09:44 +0000 |
commit | 4b41745e0556087fe22a2a6f17de92d95199f701 (patch) | |
tree | 9422e55fca46c86ce74a4a64e738405acfd01477 /clang/unittests/Format/FormatTest.cpp | |
parent | 1fe21fc0b5dfb42b0c8909a51251c8f900058af4 (diff) | |
download | bcm5719-llvm-4b41745e0556087fe22a2a6f17de92d95199f701.tar.gz bcm5719-llvm-4b41745e0556087fe22a2a6f17de92d95199f701.zip |
Re-sort all the headers. Lots of regressions have crept in here.
Manually fix the order of UnwrappedLineParser.cpp as that one didn't
have its associated header as the first header.
This also uncovered a subtle inclusion order dependency as CLog.h didn't
include LLVM.h to pick up using declarations it relied upon.
llvm-svn: 172892
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 1434f32e2f3..c9319d59390 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -10,10 +10,10 @@ #define DEBUG_TYPE "format-test" #include "clang/Format/Format.h" +#include "../Tooling/RewriterTestContext.h" #include "clang/Lex/Lexer.h" -#include "gtest/gtest.h" #include "llvm/Support/Debug.h" -#include "../Tooling/RewriterTestContext.h" +#include "gtest/gtest.h" // Uncomment to get debug output from tests: // #define DEBUG_WITH_TYPE(T, X) do { X; } while(0) |