From d7b659b592e6aaa6659904d346a0cacfa18d1661 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Thu, 9 Aug 2018 21:08:08 +0000 Subject: Port getLocStart -> getBeginLoc Reviewers: teemperor! Subscribers: jholewinski, whisperity, jfb, cfe-commits Differential Revision: https://reviews.llvm.org/D50350 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@339385 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/CloneDetection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Analysis/CloneDetection.cpp') diff --git a/lib/Analysis/CloneDetection.cpp b/lib/Analysis/CloneDetection.cpp index deabee9239..38db6ccb92 100644 --- a/lib/Analysis/CloneDetection.cpp +++ b/lib/Analysis/CloneDetection.cpp @@ -78,7 +78,7 @@ ASTContext &StmtSequence::getASTContext() const { } SourceLocation StmtSequence::getBeginLoc() const { - return front()->getLocStart(); + return front()->getBeginLoc(); } SourceLocation StmtSequence::getEndLoc() const { return back()->getLocEnd(); } -- cgit v1.2.1