diff options
Diffstat (limited to 'clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp')
-rw-r--r-- | clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp b/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp index 50727a55fc7..7387e9c44d5 100644 --- a/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp +++ b/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp @@ -61,7 +61,7 @@ public: } template <class T> void match(StringRef Path, const T *D) { - Match(Path, D->getLocStart()); + Match(Path, D->getBeginLoc()); } }; |