summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@vmiklos.hu>2016-08-30 07:24:57 +0000
committerMiklos Vajna <vmiklos@vmiklos.hu>2016-08-30 07:24:57 +0000
commit5a99207d11f3ea72ca9424596e1d0cdf4bdb9f3f (patch)
treea09f25213f9540eadc0c514b382792beb8212e4f /clang-tools-extra
parent2e5fca77a68e491b1f4f5503fa6d4479a06bd463 (diff)
downloadbcm5719-llvm-5a99207d11f3ea72ca9424596e1d0cdf4bdb9f3f.tar.gz
bcm5719-llvm-5a99207d11f3ea72ca9424596e1d0cdf4bdb9f3f.zip
clang-rename: fix formatting in USRFinder
As detected by clang-format. llvm-svn: 280063
Diffstat (limited to 'clang-tools-extra')
-rw-r--r--clang-tools-extra/clang-rename/USRFinder.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-rename/USRFinder.cpp b/clang-tools-extra/clang-rename/USRFinder.cpp
index 400765351e8..2766b5ae53e 100644
--- a/clang-tools-extra/clang-rename/USRFinder.cpp
+++ b/clang-tools-extra/clang-rename/USRFinder.cpp
@@ -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);
OpenPOWER on IntegriCloud