File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lldb/source/Plugins/Process/minidump Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ llvm::ArrayRef<uint8_t> MinidumpParser::GetStream(StreamType stream_type) {
4949 return m_file->getRawStream (stream_type).value_or (llvm::ArrayRef<uint8_t >());
5050}
5151
52- std::optional<llvm::ArrayRef<uint8_t >> MinidumpParser::GetRawStream (StreamType stream_type) {
52+ std::optional<llvm::ArrayRef<uint8_t >>
53+ MinidumpParser::GetRawStream (StreamType stream_type) {
5354 return m_file->getRawStream (stream_type);
5455}
5556
Original file line number Diff line number Diff line change @@ -360,7 +360,6 @@ bool ProcessMinidump::IsLLDBMinidump() {
360360 return lldb_generated_section.has_value ();
361361}
362362
363-
364363DynamicLoader *ProcessMinidump::GetDynamicLoader () {
365364 // This is a workaround for the dynamic loader not playing nice in issue
366365 // #119598. The specific reason we use the dynamic loader is to get the TLS
You can’t perform that action at this time.
0 commit comments