[clang-rename] add missing clang-format improvements
authorKirill Bobyrev <omtcyfz@gmail.com>
Thu, 4 Aug 2016 09:23:30 +0000 (09:23 +0000)
committerKirill Bobyrev <omtcyfz@gmail.com>
Thu, 4 Aug 2016 09:23:30 +0000 (09:23 +0000)
r277702 introduced clang-format changes so that later commits wouldn't introduce
non-functional changes while running clang-format before commiting. Though,
few changes by clang-format weren't in the patch.

llvm-svn: 277709

clang-tools-extra/clang-rename/USRFindingAction.cpp
clang-tools-extra/clang-rename/tool/ClangRename.cpp

index 41f6b84..afc6186 100644 (file)
@@ -29,8 +29,8 @@
 #include "clang/Tooling/Refactoring.h"
 #include "clang/Tooling/Tooling.h"
 #include <algorithm>
-#include <string>
 #include <set>
+#include <string>
 #include <vector>
 
 using namespace llvm;
index 3a468c4..dc2b7a5 100644 (file)
@@ -13,8 +13,8 @@
 ///
 //===----------------------------------------------------------------------===//
 
-#include "../USRFindingAction.h"
 #include "../RenamingAction.h"
+#include "../USRFindingAction.h"
 #include "clang/Basic/Diagnostic.h"
 #include "clang/Basic/DiagnosticOptions.h"
 #include "clang/Basic/FileManager.h"
@@ -31,8 +31,8 @@
 #include "llvm/ADT/IntrusiveRefCntPtr.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/FileSystem.h"
-#include "llvm/Support/raw_ostream.h"
 #include "llvm/Support/YAMLTraits.h"
+#include "llvm/Support/raw_ostream.h"
 #include <cstdlib>
 #include <string>
 #include <system_error>