aboutsummaryrefslogtreecommitdiffstats
path: root/abstractmetalang.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'abstractmetalang.cpp')
-rw-r--r--abstractmetalang.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/abstractmetalang.cpp b/abstractmetalang.cpp
index e3cb07ecc..a2c9a9cb3 100644
--- a/abstractmetalang.cpp
+++ b/abstractmetalang.cpp
@@ -841,7 +841,7 @@ bool AbstractMetaFunction::isInplaceOperator() const
bool AbstractMetaFunction::isVirtual() const
{
- return !isFinal() && !isSignal() && !isStatic() && !isFinalInCpp();
+ return !isFinal() && !isSignal() && !isStatic() && !isFinalInCpp() && !isConstructor();
}
bool AbstractMetaFunction::isCopyConstructor() const