diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-12-04 09:20:42 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-04 09:35:50 +0100 |
commit | c4c464f8a5025ad59733723e1ba1900837760078 (patch) | |
tree | fd0c49e5b79b51e22b1153c12401cc2df41738e2 /lldb/source/API/SBModule.cpp | |
parent | d8136f14f125fb27f2326f397df0964bf62078ca (diff) | |
download | bcm5719-llvm-c4c464f8a5025ad59733723e1ba1900837760078.tar.gz bcm5719-llvm-c4c464f8a5025ad59733723e1ba1900837760078.zip |
[lldb][NFC] Migrate to raw_ostream in Module::GetDescription
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r-- | lldb/source/API/SBModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index 7ac189bb427..4e9dfb0c1e6 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -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"); |