[lldb][NFC] Migrate to raw_ostream in Module::GetDescription

This commit is contained in:
Raphael Isemann
2019-12-04 09:20:42 +01:00
parent d8136f14f1
commit c4c464f8a5
5 changed files with 15 additions and 14 deletions

View File

@@ -245,7 +245,7 @@ bool SBModule::GetDescription(SBStream &description) {
ModuleSP module_sp(GetSP());
if (module_sp) {
module_sp->GetDescription(&strm);
module_sp->GetDescription(strm.AsRawOstream());
} else
strm.PutCString("No value");