aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cppgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppgenerator.cpp b/cppgenerator.cpp
index 9d409c161..1e9b3877f 100644
--- a/cppgenerator.cpp
+++ b/cppgenerator.cpp
@@ -917,7 +917,7 @@ void CppGenerator::writeMinimalConstructorCallArguments(QTextStream& s, const Ab
Q_ASSERT(metaType);
const TypeEntry* type = metaType->typeEntry();
- if (type->isObject()) {
+ if (type->isObject() || metaType->isValuePointer()) {
s << "0";
} else if (type->isPrimitive()) {
const PrimitiveTypeEntry* primitiveTypeEntry = reinterpret_cast<const PrimitiveTypeEntry*>(type);