aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-04-26 11:09:02 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-06-10 15:01:29 +0000
commitd32849dbe70636bb793454c8e5d6f6665cdadcf7 (patch)
treef3c86926529bc2f9180cb6e3320f69db16c4931e /src
parent8a9112c7f7610bb98b34058859ba54e0143c0d7f (diff)
Remove explicit marking of the typedarray constructors
These objects live on the JS stack and are thus marked implicitly. Change-Id: I8295d8096d0a47861e0092c36e16b95db458de3c Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 12a5062d65..a54d375192 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -906,9 +906,6 @@ void ExecutionEngine::markObjects()
c = c->parent;
}
- for (int i = 0; i < Heap::TypedArray::NTypes; ++i)
- typedArrayCtors[i].mark(this);
-
if (m_qmlExtensions)
m_qmlExtensions->markObjects(this);