summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp')
-rw-r--r--tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp b/tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp
index 0d4c3419c0..d3c779b3aa 100644
--- a/tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp
+++ b/tests/benchmarks/corelib/kernel/qvariant/tst_qvariant.cpp
@@ -349,7 +349,7 @@ void tst_qvariant::createCoreType()
QFETCH(int, typeId);
QBENCHMARK {
for (int i = 0; i < ITERATION_COUNT; ++i)
- QVariant(typeId, (void *)0);
+ QVariant(QMetaType(typeId));
}
}
@@ -365,11 +365,11 @@ void tst_qvariant::createCoreTypeCopy_data()
void tst_qvariant::createCoreTypeCopy()
{
QFETCH(int, typeId);
- QVariant other(typeId, (void *)0);
+ QVariant other(typeId);
const void *copy = other.constData();
QBENCHMARK {
for (int i = 0; i < ITERATION_COUNT; ++i)
- QVariant(typeId, copy);
+ QVariant(QMetaType(typeId), copy);
}
}