aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-03-18 15:11:04 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2020-03-18 16:52:19 +0100
commitd097d77eceea387a27179cdeaf5e50d46ad8e7f0 (patch)
treeb5bd75312bb7ea3477816fca4a07df58cbc0b136
parentdf6d816fe3b0444db2c4165c86b330edd610e531 (diff)
fix developer build on clang
Change-Id: I413cbce42d7405b17eff18293a68c2a26f30fd08 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
-rw-r--r--src/qml/qml/qqmlpropertydata_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlpropertydata_p.h b/src/qml/qml/qqmlpropertydata_p.h
index f21b502b50..9fa272bcdf 100644
--- a/src/qml/qml/qqmlpropertydata_p.h
+++ b/src/qml/qml/qqmlpropertydata_p.h
@@ -423,6 +423,7 @@ private:
bool QQmlPropertyData::operator==(const QQmlPropertyData &other) const
{
+ Q_UNUSED(m_reserved)
return flags() == other.flags() &&
propType() == other.propType() &&
coreIndex() == other.coreIndex() &&