diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/WeakRefConstructor.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/WeakRefConstructor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.h b/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.h index 543bc5049f..346537d5d9 100644 --- a/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.h +++ b/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.h @@ -19,7 +19,7 @@ public: virtual ~WeakRefConstructor() override; virtual Value call() override; - virtual Value construct(Function&) override; + virtual Value construct(FunctionObject&) override; private: virtual bool has_constructor() const override { return true; } |