summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp')
-rw-r--r--tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp b/tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp
index f76f3aa0c6..c23c08bd7c 100644
--- a/tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp
+++ b/tests/auto/corelib/tools/qhashfunctions/tst_qhashfunctions.cpp
@@ -105,8 +105,8 @@ void tst_QHashFunctions::qhash()
a2.resize(1);
a2.setBit(0, false);
- uint h1 = qHash(a1, seed);
- uint h2 = qHash(a2, seed);
+ size_t h1 = qHash(a1, seed);
+ size_t h2 = qHash(a2, seed);
QVERIFY(h1 != h2); // not guaranteed
@@ -124,14 +124,14 @@ void tst_QHashFunctions::qhash()
QVERIFY(h1 == h2);
a2.setBit(0, false);
- uint h3 = qHash(a2, seed);
+ size_t h3 = qHash(a2, seed);
QVERIFY(h2 != h3); // not guaranteed
a2.setBit(0, true);
QVERIFY(h2 == qHash(a2, seed));
a2.setBit(6, false);
- uint h4 = qHash(a2, seed);
+ size_t h4 = qHash(a2, seed);
QVERIFY(h2 != h4); // not guaranteed
a2.setBit(6, true);
@@ -228,7 +228,7 @@ void tst_QHashFunctions::qthash()
namespace SomeNamespace {
struct Hashable { int i; };
- inline uint qHash(Hashable h, uint seed = 0)
+ inline size_t qHash(Hashable h, size_t seed = 0)
{ return QT_PREPEND_NAMESPACE(qHash)(h.i, seed); }
}