aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4identifiertable_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4identifiertable_p.h')
-rw-r--r--src/qml/jsruntime/qv4identifiertable_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4identifiertable_p.h b/src/qml/jsruntime/qv4identifiertable_p.h
index a02d90e7e2..02fc8b70c6 100644
--- a/src/qml/jsruntime/qv4identifiertable_p.h
+++ b/src/qml/jsruntime/qv4identifiertable_p.h
@@ -79,10 +79,10 @@ public:
Identifier *identifierImpl(const String *str);
- void mark() {
+ void mark(ExecutionEngine *e) {
for (int i = 0; i < alloc; ++i)
if (entries[i])
- entries[i]->mark();
+ entries[i]->mark(e);
}
};