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 | b1ba0efc3d1dc1daa5d82c40bc504e1f368c4fa0 (patch) | |
tree | 99ccab933b78c5a7a12d7d51e0511c4402c2ec94 /lib/Format/UnwrappedLineParser.cpp | |
parent | 6ee777de8b35a3a18da424356aebe9ec743dc497 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172892 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Format/UnwrappedLineParser.cpp')
-rw-r--r-- | lib/Format/UnwrappedLineParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Format/UnwrappedLineParser.cpp b/lib/Format/UnwrappedLineParser.cpp index a0a18ac1cf..393416de02 100644 --- a/lib/Format/UnwrappedLineParser.cpp +++ b/lib/Format/UnwrappedLineParser.cpp @@ -18,9 +18,9 @@ #define DEBUG_TYPE "format-parser" +#include "UnwrappedLineParser.h" #include "clang/Basic/Diagnostic.h" #include "llvm/Support/Debug.h" -#include "UnwrappedLineParser.h" // Uncomment to get debug output from tests: // #define DEBUG_WITH_TYPE(T, X) do { X; } while(0) |