AST: rename printDeclUSRForModuleDoc to printDeclUSR. NFC

This commit is contained in:
Xi Ge
2019-10-07 16:29:52 -07:00
parent 5430ad50fa
commit dd33540231
12 changed files with 25 additions and 25 deletions

View File

@@ -545,7 +545,7 @@ public:
RenameRangeCollector(const ValueDecl *D, StringRef newName)
: newName(newName.str()) {
llvm::raw_string_ostream OS(USR);
printDeclUSR(D, OS);
printValueDeclUSR(D, OS);
}
ArrayRef<RenameLoc> results() const { return locations; }