We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa6e3a2 commit 62bb648Copy full SHA for 62bb648
lldb/source/Target/ThreadPlanStepRange.cpp
@@ -428,8 +428,8 @@ bool ThreadPlanStepRange::SetNextBranchBreakpoint() {
428
top_most_line_entry.line = call_site.GetLine();
429
top_most_line_entry.column = call_site.GetColumn();
430
FileSpec call_site_file_spec = call_site.GetFile();
431
- top_most_line_entry.original_file_sp.reset(
432
- new SupportFile(call_site_file_spec));
+ top_most_line_entry.original_file_sp =
+ std::make_shared<SupportFile>(call_site_file_spec);
433
top_most_line_entry.range = range;
434
top_most_line_entry.file_sp = std::make_shared<SupportFile>();
435
top_most_line_entry.ApplyFileMappings(
0 commit comments