diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-10-07 15:29:30 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-10-08 20:46:36 +0200 |
commit | bef96f7a7b4d1dc7bcb01c949e0ae296c969dcee (patch) | |
tree | 77462295af716f5afb2645fadcc4034855ee4ee6 /compilerplugins/clang/salbool.cxx | |
parent | 412c6c1ca9a9ed5c585935e8b6cfc70f1a7152c4 (diff) |
better name for a function in compilerplugins
The function is not just about a spelling location.
Change-Id: I96e9e9ef7e27a9763397b4b86473c1c30d0e3eeb
Reviewed-on: https://gerrit.libreoffice.org/80381
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'compilerplugins/clang/salbool.cxx')
-rw-r--r-- | compilerplugins/clang/salbool.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/salbool.cxx b/compilerplugins/clang/salbool.cxx index ad71435470f0..3aba59124e2b 100644 --- a/compilerplugins/clang/salbool.cxx +++ b/compilerplugins/clang/salbool.cxx @@ -767,7 +767,7 @@ bool SalBool::TraverseStaticAssertDecl(StaticAssertDecl * decl) { // inside static_assert in cppu/source/uno/check.cxx: return loplugin::isSamePathname( - getFileNameOfSpellingLoc(decl->getLocation()), + getFilenameOfLocation(decl->getLocation()), SRCDIR "/cppu/source/uno/check.cxx") || RecursiveASTVisitor::TraverseStaticAssertDecl(decl); } @@ -803,7 +803,7 @@ bool SalBool::isInSpecialMainFile(SourceLocation spellingLocation) const { if (!compiler.getSourceManager().isInMainFile(spellingLocation)) { return false; } - auto f = getFileNameOfSpellingLoc(spellingLocation); + auto f = getFilenameOfLocation(spellingLocation); return loplugin::isSamePathname(f, SRCDIR "/cppu/qa/test_any.cxx") || loplugin::isSamePathname(f, SRCDIR "/cppu/source/uno/check.cxx"); // TODO: the offset checks |