diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/BoundFunction.h')
-rw-r--r-- | Libraries/LibJS/Runtime/BoundFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/BoundFunction.h b/Libraries/LibJS/Runtime/BoundFunction.h index 16197eb7a8..0b04132480 100644 --- a/Libraries/LibJS/Runtime/BoundFunction.h +++ b/Libraries/LibJS/Runtime/BoundFunction.h @@ -35,7 +35,7 @@ class BoundFunction final : public Function { public: BoundFunction(GlobalObject&, Function& target_function, Value bound_this, Vector<Value> arguments, i32 length, Object* constructor_prototype); - virtual void initialize(Interpreter&, GlobalObject&) override; + virtual void initialize(GlobalObject&) override; virtual ~BoundFunction(); virtual Value call(Interpreter& interpreter) override; |