Skip to content

Commit de713ab

Browse files
committed
fixed some clang-tidy-14 warnings
1 parent e5fc9d0 commit de713ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/triage/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ void MainWindow::showResult(QListWidgetItem *item)
263263
const QStringList lines = item->text().split("\n");
264264
if (lines.size() < 2)
265265
return;
266-
const QString url = lines[0];
266+
const QString &url = lines[0];
267267
QString msg = lines[1];
268268
const QRegularExpressionMatch matchRes = mVersionRe.match(msg);
269269
if (matchRes.hasMatch())

0 commit comments

Comments
 (0)