aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v4
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2012-04-19 10:08:10 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-20 11:26:36 +0200
commitff33dce377d133c12c5741f26770ef4403650d1b (patch)
tree74cd55319aec11e885bd73ed9be23f18e9984683 /src/qml/qml/v4
parent39cc7f0a2b65f4a283ce168a03a3ea65705d852f (diff)
Fix warnings about non-virtual destructors
Change-Id: Ief63ebe0ab3622b8858e23fdfb773c6b283a9c14 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Diffstat (limited to 'src/qml/qml/v4')
-rw-r--r--src/qml/qml/v4/qv4ir_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/v4/qv4ir_p.h b/src/qml/qml/v4/qv4ir_p.h
index 254b810403..485c24586c 100644
--- a/src/qml/qml/v4/qv4ir_p.h
+++ b/src/qml/qml/v4/qv4ir_p.h
@@ -556,7 +556,7 @@ struct BasicBlock {
Stmt *CJUMP(Expr *cond, BasicBlock *iftrue, BasicBlock *iffalse);
Stmt *RET(Expr *expr, Type type, quint32 line, quint32 column);
- virtual void dump(QTextStream &out);
+ void dump(QTextStream &out);
};
#ifdef DEBUG_IR_STRUCTURE