aboutsummaryrefslogtreecommitdiff
path: root/clang-format
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-01-02 10:29:31 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-01-02 10:29:31 +0000
commit62c51d4248766d4a2a4ef518388b7a7ceb1438b0 (patch)
treeaa23133c8185b9dedcb62424b1769847d616d649 /clang-format
parent703f70478b5b457750b155775c4462229e5477bd (diff)
Fix the sorting of the #include lines in these tools.
This is done with the script in llvm/utils/sort_includes.py git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@171365 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clang-format')
-rw-r--r--clang-format/ClangFormat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-format/ClangFormat.cpp b/clang-format/ClangFormat.cpp
index a42d6506..b0117dca 100644
--- a/clang-format/ClangFormat.cpp
+++ b/clang-format/ClangFormat.cpp
@@ -17,9 +17,9 @@
#include "clang/Basic/DiagnosticOptions.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/SourceManager.h"
+#include "clang/Format/Format.h"
#include "clang/Lex/Lexer.h"
#include "clang/Rewrite/Core/Rewriter.h"
-#include "clang/Format/Format.h"
#include "llvm/Support/FileSystem.h"
using namespace llvm;