diff options
Diffstat (limited to 'src/qml/jsruntime/qv4booleanobject_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4booleanobject_p.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4booleanobject_p.h b/src/qml/jsruntime/qv4booleanobject_p.h index 3dc4a3d59e..3ff0569bc2 100644 --- a/src/qml/jsruntime/qv4booleanobject_p.h +++ b/src/qml/jsruntime/qv4booleanobject_p.h @@ -51,8 +51,11 @@ namespace QV4 { struct BooleanCtor: FunctionObject { + struct Data : FunctionObject::Data { + Data(ExecutionContext *scope); + }; + V4_OBJECT - BooleanCtor(ExecutionContext *scope); static ReturnedValue construct(Managed *, CallData *callData); static ReturnedValue call(Managed *that, CallData *callData); |