aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/ftw
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-07-15 17:37:23 +1000
committerQt by Nokia <qt-info@nokia.com>2011-08-30 13:18:28 +0200
commit3f7ea11f9f9a0ecb2bc571237f8f3523447883f7 (patch)
tree8494087c47cf3af811c21d9fdd1636d7b94e1822 /src/declarative/qml/ftw
parent7ab665fe61b4fe28fdb141fa66509b3addd55623 (diff)
Remove invalid assert
Change-Id: Ia0544cf8c1d236977f193ad4c5726217035cabcb Reviewed-on: http://codereview.qt.nokia.com/3749 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com> Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Diffstat (limited to 'src/declarative/qml/ftw')
-rw-r--r--src/declarative/qml/ftw/qhashedstring_p.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/declarative/qml/ftw/qhashedstring_p.h b/src/declarative/qml/ftw/qhashedstring_p.h
index bfca8dacd1..041ad02b39 100644
--- a/src/declarative/qml/ftw/qhashedstring_p.h
+++ b/src/declarative/qml/ftw/qhashedstring_p.h
@@ -479,7 +479,6 @@ template<class T, int SmallThreshold>
void QStringHash<T,SmallThreshold>::copy(const QStringHash<T,SmallThreshold> &other)
{
Q_ASSERT(data.nodes == 0);
- Q_ASSERT(data.size == 0);
if (other.data.size <= SmallThreshold) {
QStringHashNode *n = other.data.nodes;