summaryrefslogtreecommitdiffstats
path: root/tests/manual/qstorageinfo/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qstorageinfo/main.cpp')
-rw-r--r--tests/manual/qstorageinfo/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/qstorageinfo/main.cpp b/tests/manual/qstorageinfo/main.cpp
index a2fd95129c..f6890b0c3b 100644
--- a/tests/manual/qstorageinfo/main.cpp
+++ b/tests/manual/qstorageinfo/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Intel Corporation
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtCore/QCoreApplication>
@@ -15,7 +15,7 @@ int main(int argc, char *argv[])
QStringList args = a.arguments();
args.takeFirst(); // skip application name
- foreach (const QString &path, args) {
+ for (const QString &path : std::as_const(args)) {
QStorageInfo info(path);
if (!info.isValid()) {
// no error string...