diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/ObjectConstructor.h')
-rw-r--r-- | Libraries/LibJS/Runtime/ObjectConstructor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/ObjectConstructor.h b/Libraries/LibJS/Runtime/ObjectConstructor.h index 7040c73b9f..7d7bb5e751 100644 --- a/Libraries/LibJS/Runtime/ObjectConstructor.h +++ b/Libraries/LibJS/Runtime/ObjectConstructor.h @@ -38,7 +38,7 @@ public: virtual void initialize(GlobalObject&) override; virtual ~ObjectConstructor() override; - virtual Value call(Interpreter&) override; + virtual Value call() override; virtual Value construct(Interpreter&, Function& new_target) override; private: |