diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-12-06 08:38:23 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-06 09:40:42 +0100 |
commit | 4dac97eb1e6563750e682e482e68f29ac076a4f7 (patch) | |
tree | f766d99985f1c8f5674d1939b7de7e38b669315c /lldb/source/Breakpoint | |
parent | 51ce067a442ee6381527b12d113f51906b0245a8 (diff) | |
download | bcm5719-llvm-4dac97eb1e6563750e682e482e68f29ac076a4f7.tar.gz bcm5719-llvm-4dac97eb1e6563750e682e482e68f29ac076a4f7.zip |
[lldb][NFC] Migrate FileSpec::Dump to raw_ostream
Diffstat (limited to 'lldb/source/Breakpoint')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Breakpoint/BreakpointLocation.cpp b/lldb/source/Breakpoint/BreakpointLocation.cpp index e6d7d85f906..7f08b08c605 100644 --- a/lldb/source/Breakpoint/BreakpointLocation.cpp +++ b/lldb/source/Breakpoint/BreakpointLocation.cpp @@ -519,7 +519,7 @@ void BreakpointLocation::GetDescription(Stream *s, if (sc.module_sp) { s->EOL(); s->Indent("module = "); - sc.module_sp->GetFileSpec().Dump(s); + sc.module_sp->GetFileSpec().Dump(s->AsRawOstream()); } if (sc.comp_unit != nullptr) { |