@@ -653,7 +653,7 @@ namespace swift::misc::simulation::fscommon
653
653
if (fileContent.isEmpty ()) { continue ; }
654
654
const QList<QStringView> lines = splitLinesRefs (fileContent);
655
655
static const QString p (" Path=" );
656
- for (const QStringView & line : lines)
656
+ for (const QStringView line : lines)
657
657
{
658
658
const qsizetype i = line.lastIndexOf (p, -1 , Qt::CaseInsensitive);
659
659
if (i < 0 || line.endsWith (' =' )) { continue ; }
@@ -779,7 +779,7 @@ namespace swift::misc::simulation::fscommon
779
779
const QString relPath = fsxFileInfo.absolutePath ();
780
780
781
781
QSet<QString> paths;
782
- for (const QStringView & line : lines)
782
+ for (const QStringView line : lines)
783
783
{
784
784
const qsizetype i1 = line.lastIndexOf (p, -1 , Qt::CaseInsensitive);
785
785
if (i1 < 0 ) { continue ; }
@@ -845,7 +845,7 @@ namespace swift::misc::simulation::fscommon
845
845
const QString relPath = fsxFileInfo.absolutePath ();
846
846
847
847
QSet<QString> paths;
848
- for (const QStringView & line : lines)
848
+ for (const QStringView line : lines)
849
849
{
850
850
const qsizetype i1 = line.lastIndexOf (p, -1 , Qt::CaseInsensitive);
851
851
if (i1 < 0 ) { continue ; }
0 commit comments