From c0f241e80f95f196ef2aa031156cb38daf7e5241 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 11 Feb 2017 20:31:37 +0100 Subject: SourceManager::getFilename returns StringRef Change-Id: I77db8565efe2e0d366afc8470308d7801a2a7337 --- compilerplugins/clang/stringconstant.cxx | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'compilerplugins/clang/stringconstant.cxx') diff --git a/compilerplugins/clang/stringconstant.cxx b/compilerplugins/clang/stringconstant.cxx index d7f34f9a7fa5..8616096a4f8c 100644 --- a/compilerplugins/clang/stringconstant.cxx +++ b/compilerplugins/clang/stringconstant.cxx @@ -318,10 +318,8 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { { // u.equalsIgnoreAsciiCaseAscii("foo") -> // u.equalsIngoreAsciiCase("foo"): - std::string file( - compiler.getSourceManager().getFilename( - compiler.getSourceManager().getSpellingLoc( - expr->getLocStart()))); + auto file = compiler.getSourceManager().getFilename( + compiler.getSourceManager().getSpellingLoc(expr->getLocStart())); if (file == SRCDIR "/sal/qa/rtl/strings/test_oustring_compare.cxx") { return true; } @@ -336,10 +334,8 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { { // u.equalsIgnoreAsciiCaseAsciiL("foo", 3) -> // u.equalsIngoreAsciiCase("foo"): - std::string file( - compiler.getSourceManager().getFilename( - compiler.getSourceManager().getSpellingLoc( - expr->getLocStart()))); + auto file = compiler.getSourceManager().getFilename( + compiler.getSourceManager().getSpellingLoc(expr->getLocStart())); if (file == SRCDIR "/sal/qa/rtl/strings/test_oustring_compare.cxx") { return true; } @@ -703,10 +699,9 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { case 2: { // b.append("foo", 3) -> b.append("foo"): - std::string file( - compiler.getSourceManager().getFilename( - compiler.getSourceManager().getSpellingLoc( - expr->getLocStart()))); + auto file = compiler.getSourceManager().getFilename( + compiler.getSourceManager().getSpellingLoc( + expr->getLocStart())); if (file == SRCDIR "/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx") { @@ -990,11 +985,11 @@ bool StringConstant::VisitCXXConstructExpr(CXXConstructExpr const * expr) { if (dc.Operator(OO_Plus).Namespace("rtl") .GlobalNamespace()) { - std::string file( + auto file = compiler.getSourceManager().getFilename( compiler.getSourceManager() .getSpellingLoc( - expr->getLocStart()))); + expr->getLocStart())); if (file == (SRCDIR "/sal/qa/rtl/strings/test_ostring_concat.cxx") -- cgit