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/Interpreter | |
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/Interpreter')
-rw-r--r-- | lldb/source/Interpreter/OptionValueFileSpecList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/OptionValueFileSpecList.cpp b/lldb/source/Interpreter/OptionValueFileSpecList.cpp index 1a9d3c9ecb8..f2367b1941c 100644 --- a/lldb/source/Interpreter/OptionValueFileSpecList.cpp +++ b/lldb/source/Interpreter/OptionValueFileSpecList.cpp @@ -33,7 +33,7 @@ void OptionValueFileSpecList::DumpValue(const ExecutionContext *exe_ctx, strm.Indent(); strm.Printf("[%u]: ", i); } - m_current_value.GetFileSpecAtIndex(i).Dump(&strm); + m_current_value.GetFileSpecAtIndex(i).Dump(strm.AsRawOstream()); if (one_line) strm << ' '; } |