Skip to content
Snippets Groups Projects
Commit 98e79a06 authored by Quentin Colombet's avatar Quentin Colombet
Browse files

[DiagnosticPrinter] Use the appropriate method to print a Twine object in a

raw_ostream.

llvm-svn: 197531
parent e8bc31f0
No related branches found
No related tags found
Loading
......@@ -90,7 +90,7 @@ DiagnosticPrinter &DiagnosticPrinterRawOStream::operator<<(double N) {
}
DiagnosticPrinter &DiagnosticPrinterRawOStream::operator<<(const Twine &Str) {
Stream << Str.getSingleStringRef();
Str.print(Stream);
return *this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment