From 9b1773b517e177eaf34b3342994b4ab688934e8b Mon Sep 17 00:00:00 2001
From: Chandler Carruth <chandlerc@gmail.com>
Date: Tue, 4 Dec 2012 09:21:50 +0000
Subject: [PATCH] Update the #include lines of the extra tools.

llvm-svn: 169239
---
 clang-tools-extra/loop-convert/LoopActions.cpp | 1 -
 clang-tools-extra/loop-convert/LoopActions.h   | 2 +-
 clang-tools-extra/loop-convert/LoopConvert.cpp | 3 +--
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/clang-tools-extra/loop-convert/LoopActions.cpp b/clang-tools-extra/loop-convert/LoopActions.cpp
index d3430920b608..de1ae997d335 100644
--- a/clang-tools-extra/loop-convert/LoopActions.cpp
+++ b/clang-tools-extra/loop-convert/LoopActions.cpp
@@ -13,7 +13,6 @@
 #include "LoopActions.h"
 #include "LoopMatchers.h"
 #include "VariableNaming.h"
-
 #include "clang/Lex/Lexer.h"
 
 namespace clang {
diff --git a/clang-tools-extra/loop-convert/LoopActions.h b/clang-tools-extra/loop-convert/LoopActions.h
index 7dc94fcc329b..13c8dc705b67 100644
--- a/clang-tools-extra/loop-convert/LoopActions.h
+++ b/clang-tools-extra/loop-convert/LoopActions.h
@@ -14,10 +14,10 @@
 #define _LLVM_TOOLS_CLANG_TOOLS_EXTRA_LOOP_CONVERT_LOOPACTIONS_H_
 
 #include "StmtAncestor.h"
-#include "clang/Tooling/Refactoring.h"
 #include "clang/AST/ASTContext.h"
 #include "clang/AST/RecursiveASTVisitor.h"
 #include "clang/ASTMatchers/ASTMatchFinder.h"
+#include "clang/Tooling/Refactoring.h"
 
 namespace clang {
 namespace loop_migrate {
diff --git a/clang-tools-extra/loop-convert/LoopConvert.cpp b/clang-tools-extra/loop-convert/LoopConvert.cpp
index 6e75bbce71f1..39efe5093ea5 100644
--- a/clang-tools-extra/loop-convert/LoopConvert.cpp
+++ b/clang-tools-extra/loop-convert/LoopConvert.cpp
@@ -23,12 +23,11 @@
 
 #include "LoopActions.h"
 #include "LoopMatchers.h"
-
 #include "clang/Basic/FileManager.h"
 #include "clang/Frontend/CompilerInstance.h"
 #include "clang/Frontend/FrontendActions.h"
-#include "clang/Tooling/Tooling.h"
 #include "clang/Tooling/Refactoring.h"
+#include "clang/Tooling/Tooling.h"
 
 using clang::ast_matchers::MatchFinder;
 namespace cl = llvm::cl;