Index: clang-tools-extra/trunk/clang-rename/RenamingAction.h =================================================================== --- clang-tools-extra/trunk/clang-rename/RenamingAction.h +++ clang-tools-extra/trunk/clang-rename/RenamingAction.h @@ -41,7 +41,6 @@ std::map &FileToReplaces; bool PrintLocations; }; - } } Index: clang-tools-extra/trunk/clang-rename/USRFinder.h =================================================================== --- clang-tools-extra/trunk/clang-rename/USRFinder.h +++ clang-tools-extra/trunk/clang-rename/USRFinder.h @@ -49,7 +49,7 @@ class NestedNameSpecifierLocFinder : public MatchFinder::MatchCallback { public: explicit NestedNameSpecifierLocFinder(ASTContext &Context) - : Context(Context) {} + : Context(Context) {} std::vector getNestedNameSpecifierLocations() { addMatchers(); @@ -65,8 +65,8 @@ } virtual void run(const MatchFinder::MatchResult &Result) { - const auto *NNS = - Result.Nodes.getNodeAs("nestedNameSpecifierLoc"); + const auto *NNS = Result.Nodes.getNodeAs( + "nestedNameSpecifierLoc"); Locations.push_back(*NNS); } @@ -74,7 +74,6 @@ std::vector Locations; MatchFinder Finder; }; - } } Index: clang-tools-extra/trunk/clang-rename/USRFindingAction.cpp =================================================================== --- clang-tools-extra/trunk/clang-rename/USRFindingAction.cpp +++ clang-tools-extra/trunk/clang-rename/USRFindingAction.cpp @@ -33,7 +33,6 @@ #include #include - using namespace llvm; namespace clang { @@ -47,8 +46,8 @@ class AdditionalUSRFinder : public RecursiveASTVisitor { public: explicit AdditionalUSRFinder(const Decl *FoundDecl, ASTContext &Context, - std::vector *USRs) - : FoundDecl(FoundDecl), Context(Context), USRs(USRs) {} + std::vector *USRs) + : FoundDecl(FoundDecl), Context(Context), USRs(USRs) {} void Find() { // Fill OverriddenMethods and PartialSpecs storages. @@ -63,7 +62,7 @@ } else if (const auto *RecordDecl = dyn_cast(FoundDecl)) { handleCXXRecordDecl(RecordDecl); } else if (const auto *TemplateDecl = - dyn_cast(FoundDecl)) { + dyn_cast(FoundDecl)) { handleClassTemplateDecl(TemplateDecl); } else { USRSet.insert(getUSRForDecl(FoundDecl)); @@ -87,8 +86,8 @@ private: void handleCXXRecordDecl(const CXXRecordDecl *RecordDecl) { RecordDecl = RecordDecl->getDefinition(); - if (const auto *ClassTemplateSpecDecl - = dyn_cast(RecordDecl)) { + if (const auto *ClassTemplateSpecDecl = + dyn_cast(RecordDecl)) { handleClassTemplateDecl(ClassTemplateSpecDecl->getSpecializedTemplate()); } addUSRsOfCtorDtors(RecordDecl); @@ -137,8 +136,8 @@ ASTContext &Context; std::vector *USRs; std::set USRSet; - std::vector OverriddenMethods; - std::vector PartialSpecs; + std::vector OverriddenMethods; + std::vector PartialSpecs; }; } // namespace