forked from OSchip/llvm-project
[DiagnosticPrinter] Use the appropriate method to print a Twine object in a
raw_ostream. llvm-svn: 197531
This commit is contained in:
parent
e8bc31f0ab
commit
98e79a0604
|
@ -90,7 +90,7 @@ DiagnosticPrinter &DiagnosticPrinterRawOStream::operator<<(double N) {
|
|||
}
|
||||
|
||||
DiagnosticPrinter &DiagnosticPrinterRawOStream::operator<<(const Twine &Str) {
|
||||
Stream << Str.getSingleStringRef();
|
||||
Str.print(Stream);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue