@@ -1173,16 +1173,16 @@ class CommandObjectSourceList : public CommandObjectParsed {
11731173 const uint32_t column = 0 ;
11741174
11751175 // Headers aren't always in the DWARF but if they have
1176- // executable code (eg., inlined-functions) then the callsite's file(s)
1177- // will be found.
1178- // So if a header was requested and we got a primary file, then look
1179- // thru its support file(s) for the header.
1176+ // executable code (eg., inlined-functions) then the callsite's
1177+ // file(s) will be found. So if a header was requested and we got a
1178+ // primary file, then look thru its support file(s) for the header.
11801179 lldb::SupportFileSP actual_file_sp =
11811180 sc.comp_unit ->GetPrimarySupportFile ();
11821181 if (llvm::StringRef (m_options.file_name ).ends_with (" .h" )) {
11831182 int support_matches_count = 0 ;
11841183 for (auto &file : sc.comp_unit ->GetSupportFiles ()) {
1185- if (llvm::StringRef (file->GetSpecOnly ().GetPath ()).ends_with (filename)) {
1184+ if (llvm::StringRef (file->GetSpecOnly ().GetPath ())
1185+ .ends_with (filename)) {
11861186 actual_file_sp = file;
11871187 ++support_matches_count;
11881188 }
@@ -1201,9 +1201,9 @@ class CommandObjectSourceList : public CommandObjectParsed {
12011201 }
12021202
12031203 target.GetSourceManager ().DisplaySourceLinesWithLineNumbers (
1204- actual_file_sp,
1205- m_options.start_line , column, 0 , m_options. num_lines , " " ,
1206- &result. GetOutputStream (), GetBreakpointLocations ());
1204+ actual_file_sp, m_options. start_line , column, 0 ,
1205+ m_options.num_lines , " " , &result. GetOutputStream () ,
1206+ GetBreakpointLocations ());
12071207
12081208 result.SetStatus (eReturnStatusSuccessFinishResult);
12091209 } else {
0 commit comments