26 lines
934 B
Diff
26 lines
934 B
Diff
From 51c0b300b0b1a0194628c4b84bb35885b21663ab Mon Sep 17 00:00:00 2001
|
|
From: Jeff Law <law@redhat.com>
|
|
Date: Tue, 23 Mar 2021 20:35:37 -0400
|
|
Subject: [PATCH] Use reference to avoid range-loop-construct diagnostic
|
|
|
|
Pulled from scap-workbench-1.2.1-7 in Fedora Rawhide.
|
|
|
|
Signed-off-by: Alexander Scheel <alex.scheel@canonical.com>
|
|
---
|
|
src/MainWindow.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp
|
|
index 496e1724..bea7e754 100644
|
|
--- a/src/MainWindow.cpp
|
|
+++ b/src/MainWindow.cpp
|
|
@@ -409,7 +409,7 @@ void MainWindow::openFile(const QString& path, bool reload)
|
|
|
|
// Refill mFSWatch after opening file
|
|
mFSWatch->removePaths(mFSWatch->files());
|
|
- for (const QString path : mScanningSession->getOriginalClosure())
|
|
+ for (const QString &path : mScanningSession->getOriginalClosure())
|
|
{
|
|
mFSWatch->addPath(path);
|
|
}
|