diff options
Diffstat (limited to 'clang/lib/Analysis/CloneDetection.cpp')
-rw-r--r-- | clang/lib/Analysis/CloneDetection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/CloneDetection.cpp b/clang/lib/Analysis/CloneDetection.cpp index deabee92391..38db6ccb923 100644 --- a/clang/lib/Analysis/CloneDetection.cpp +++ b/clang/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(); } |