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/Commands | |
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/Commands')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index ac318874023..345c325563f 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -1349,7 +1349,7 @@ static void DumpFullpath(Stream &strm, const FileSpec *file_spec_ptr, strm.Printf("%-*s", width, fullpath.c_str()); return; } else { - file_spec_ptr->Dump(&strm); + file_spec_ptr->Dump(strm.AsRawOstream()); return; } } |