[PATCH] D20296: clang-rename: avoid StringRef members in USRLocFindingASTVisitor
Miklos Vajna via cfe-commits
cfe-commits at lists.llvm.org
Tue May 17 11:23:26 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL269796: clang-rename: avoid StringRef members in USRLocFindingASTVisitor (authored by vmiklos).
Changed prior to commit:
http://reviews.llvm.org/D20296?vs=57385&id=57503#toc
Repository:
rL LLVM
http://reviews.llvm.org/D20296
Files:
clang-tools-extra/trunk/clang-rename/USRLocFinder.cpp
Index: clang-tools-extra/trunk/clang-rename/USRLocFinder.cpp
===================================================================
--- clang-tools-extra/trunk/clang-rename/USRLocFinder.cpp
+++ clang-tools-extra/trunk/clang-rename/USRLocFinder.cpp
@@ -123,9 +123,9 @@
}
// All the locations of the USR were found.
- StringRef USR;
+ const std::string USR;
// Old name that is renamed.
- StringRef PrevName;
+ const std::string PrevName;
std::vector<clang::SourceLocation> LocationsFound;
};
} // namespace
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20296.57503.patch
Type: text/x-patch
Size: 523 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160517/c40295cd/attachment.bin>
More information about the cfe-commits
mailing list