aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertycache_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlpropertycache_p.h')
-rw-r--r--src/qml/qml/qqmlpropertycache_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlpropertycache_p.h b/src/qml/qml/qqmlpropertycache_p.h
index e032d4f4c7..11b7c04c52 100644
--- a/src/qml/qml/qqmlpropertycache_p.h
+++ b/src/qml/qml/qqmlpropertycache_p.h
@@ -221,7 +221,6 @@ public:
quint8 revision() const { return _revision; }
void setRevision(quint8 rev)
{
- Q_ASSERT(rev >= std::numeric_limits<quint8>::min());
Q_ASSERT(rev <= std::numeric_limits<quint8>::max());
_revision = quint8(rev);
}
@@ -247,7 +246,6 @@ public:
quint8 typeMinorVersion() const { return _typeMinorVersion; }
void setTypeMinorVersion(quint8 rev)
{
- Q_ASSERT(rev >= std::numeric_limits<quint8>::min());
Q_ASSERT(rev <= std::numeric_limits<quint8>::max());
_typeMinorVersion = quint8(rev);
}