clang-rename: fix formatting in USRFinder
authorMiklos Vajna <vmiklos@vmiklos.hu>
Tue, 30 Aug 2016 07:24:57 +0000 (07:24 +0000)
committerMiklos Vajna <vmiklos@vmiklos.hu>
Tue, 30 Aug 2016 07:24:57 +0000 (07:24 +0000)
As detected by clang-format.

llvm-svn: 280063

clang-tools-extra/clang-rename/USRFinder.cpp

index 4007653..2766b5a 100644 (file)
@@ -76,8 +76,7 @@ public:
   bool VisitTypeLoc(const TypeLoc Loc) {
     const SourceLocation TypeBeginLoc = Loc.getBeginLoc();
     const SourceLocation TypeEndLoc = Lexer::getLocForEndOfToken(
-                             TypeBeginLoc, 0, Context.getSourceManager(),
-                             Context.getLangOpts());
+        TypeBeginLoc, 0, Context.getSourceManager(), Context.getLangOpts());
     if (const auto *TemplateTypeParm =
             dyn_cast<TemplateTypeParmType>(Loc.getType())) {
       return setResult(TemplateTypeParm->getDecl(), TypeBeginLoc, TypeEndLoc);