aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4value_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-01-13 21:49:09 +0100
committerLars Knoll <lars.knoll@digia.com>2015-01-21 13:19:02 +0100
commit630f118f043edb88501e387d779c62c86b1030d4 (patch)
tree2c8c3cdcadae94b859760a0603e22748da33453a /src/qml/jsruntime/qv4value_p.h
parent47fbcb47771a36ab9fd0a4d5ede7b7504ab1410d (diff)
Move the internalClass pointer into Heap::Object
The other classes that derive from Heap::Base don't need it at all. So get rid of it there and save a pointer. Change-Id: I9c5df2e43cd6eeac2e6e41f3d3b8077d3afbc8f2 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4value_p.h')
-rw-r--r--src/qml/jsruntime/qv4value_p.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/qml/jsruntime/qv4value_p.h b/src/qml/jsruntime/qv4value_p.h
index 5a4c1b9ca5..58e82f8fe2 100644
--- a/src/qml/jsruntime/qv4value_p.h
+++ b/src/qml/jsruntime/qv4value_p.h
@@ -47,19 +47,10 @@ typedef uint Bool;
namespace Heap {
struct Q_QML_EXPORT Base {
- Base() {}
- Base(InternalClass *internal)
- : internalClass(internal)
- {
-// Q_ASSERT(vtable && inUse() && !isMarked());
- // ####
- // Q_ASSERT(internal && internal->vtable);
- }
union {
const ManagedVTable *vtable;
quintptr mm_data;
};
- InternalClass *internalClass;
inline ReturnedValue asReturnedValue() const;
inline void mark(QV4::ExecutionEngine *engine);