summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorLars Schmertmann <Lars.Schmertmann@governikus.de>2020-07-02 15:56:26 +0200
committerLars Schmertmann <Lars.Schmertmann@governikus.de>2020-07-03 21:10:09 +0200
commitae890390e523f0f435190654b081764df88d7b94 (patch)
tree9c19ed0c78a11c2fc875cb4b8d4c2087e251cf4b /src/corelib
parentaf3f5b8746a31caf8457590293e3e28101ef85e3 (diff)
Avoid use of Q_UNUSED by eliminating the parameter names
This change only happens to files touched by the commit to add missing ; to Q_UNUSED. Task-number: QTBUG-82978 Change-Id: I10e6993a2bb3952cf9a262708b8573550e0dbe63 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/io/qfilesystemengine_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemengine_p.h b/src/corelib/io/qfilesystemengine_p.h
index 555483a972..dffd304282 100644
--- a/src/corelib/io/qfilesystemengine_p.h
+++ b/src/corelib/io/qfilesystemengine_p.h
@@ -115,7 +115,7 @@ public:
#if defined(Q_OS_DARWIN)
static QString bundleName(const QFileSystemEntry &entry);
#else
- static QString bundleName(const QFileSystemEntry &entry) { Q_UNUSED(entry) return QString(); }
+ static QString bundleName(const QFileSystemEntry &) { return QString(); }
#endif
static bool fillMetaData(const QFileSystemEntry &entry, QFileSystemMetaData &data,