@@ -2807,44 +2807,44 @@ ReportPath::reportPathFull(const Path *path) const
28072807}
28082808
28092809void
2810- ReportPath::reportPaths (const PathsContainer *paths_container ) const
2810+ ReportPath::reportPaths (const PathsStitch *paths_stitch ) const
28112811{
2812- if (!paths_container ->hasInternalPaths ()) {
2813- reportPathEnds (&paths_container ->pathEnds ());
2812+ if (!paths_stitch ->hasInternalPaths ()) {
2813+ reportPathEnds (&paths_stitch ->pathEnds ());
28142814 return ;
28152815 }
28162816
2817- if (!paths_container ->hasPathEnds ()) {
2818- reportPaths (&paths_container ->internalPaths ());
2817+ if (!paths_stitch ->hasPathEnds ()) {
2818+ reportPaths (&paths_stitch ->internalPaths ());
28192819 return ;
28202820 }
28212821
2822- if (!paths_container ->sortedBySlack ()) {
2822+ if (!paths_stitch ->sortedBySlack ()) {
28232823 reportPathEndHeader ();
28242824 static constexpr bool NO_PATHS_MESSAGE = false ;
2825- reportPathEnds (&paths_container ->pathEnds (), NO_PATHS_MESSAGE);
2825+ reportPathEnds (&paths_stitch ->pathEnds (), NO_PATHS_MESSAGE);
28262826
2827- const bool prev_path = paths_container ->hasPathEnds ();
2828- reportPaths (&paths_container ->internalPaths (), prev_path);
2827+ const bool prev_path = paths_stitch ->hasPathEnds ();
2828+ reportPaths (&paths_stitch ->internalPaths (), prev_path);
28292829 reportPathEndFooter ();
28302830 return ;
28312831 }
28322832
28332833 reportPathEndHeader ();
28342834
2835- const PathEndSeq &path_ends = paths_container ->pathEnds ();
2835+ const PathEndSeq &path_ends = paths_stitch ->pathEnds ();
28362836 Set<PathEnd *> qualified_ends;
28372837 if (dedup_by_word_) {
28382838 qualified_ends = dedupByWord (&path_ends);
28392839 }
2840- const InternalPathSeq &internal_paths = paths_container ->internalPaths ();
2840+ const InternalPathSeq &internal_paths = paths_stitch ->internalPaths ();
28412841
28422842 unsigned int first_index = 0 ;
28432843 unsigned int second_index = 0 ;
28442844
28452845 const PathEnd *prev_path_end = nullptr ;
28462846 unsigned int current_index = 0 ;
2847- while (current_index < paths_container ->size ()) {
2847+ while (current_index < paths_stitch ->size ()) {
28482848 current_index += 1 ;
28492849
28502850 if (first_index >= path_ends.size ()) {
0 commit comments