File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -473,7 +473,7 @@ static void output_fault_localization_plain(
473473 messaget &log)
474474{
475475 log.result () << " \n ** Most likely fault location:" << messaget::eom;
476- for (const auto fault_location_pair : fault_locations)
476+ for (const auto & fault_location_pair : fault_locations)
477477 {
478478 output_fault_localization_plain (
479479 fault_location_pair.first , fault_location_pair.second , log);
@@ -509,7 +509,7 @@ static void output_fault_localization_xml(
509509 messaget &log)
510510{
511511 xmlt dest (" fault-localization" );
512- for (const auto fault_location_pair : fault_locations)
512+ for (const auto & fault_location_pair : fault_locations)
513513 {
514514 xmlt xml_diagnosis =
515515 xml (fault_location_pair.first , fault_location_pair.second , log);
You can’t perform that action at this time.
0 commit comments