aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4context.cpp')
-rw-r--r--src/qml/jsruntime/qv4context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4context.cpp b/src/qml/jsruntime/qv4context.cpp
index d22179173c..6e3e7f9b4f 100644
--- a/src/qml/jsruntime/qv4context.cpp
+++ b/src/qml/jsruntime/qv4context.cpp
@@ -115,7 +115,7 @@ Heap::CallContext *ExecutionContext::newCallContext(CppStackFrame *frame)
c->locals.size = nLocals;
c->locals.alloc = localsAndFormals;
// memory allocated from the JS heap is 0 initialized, so check if empty is 0
- Q_ASSERT(Primitive::undefinedValue().asReturnedValue() == 0);
+ Q_ASSERT(Value::undefinedValue().asReturnedValue() == 0);
c->setupLocalTemporalDeadZone(compiledFunction);