forked from OSchip/llvm-project
PrintEscapedString -> printEscapedString
Update PrintEscapedString after renaming it in ADT. llvm-svn: 333673
This commit is contained in:
parent
3260b00d48
commit
1ab6a7ac42
|
@ -137,7 +137,7 @@ json::Expr toJSON(const TextEdit &P) {
|
|||
|
||||
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const TextEdit &TE) {
|
||||
OS << TE.range << " => \"";
|
||||
PrintEscapedString(TE.newText, OS);
|
||||
printEscapedString(TE.newText, OS);
|
||||
return OS << '"';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue