LibJS: Remove unnecessary explicit from the 3 argument Function

constructor
This commit is contained in:
Jack Karamanian 2020-05-29 22:42:05 -05:00 committed by Andreas Kling
parent 4e331a1fcf
commit 5243e9974d
Notes: sideshowbarker 2024-07-19 05:58:33 +09:00

View file

@ -56,7 +56,7 @@ public:
protected:
explicit Function(Object& prototype);
explicit Function(Object& prototype, Value bound_this, Vector<Value> bound_arguments);
Function(Object& prototype, Value bound_this, Vector<Value> bound_arguments);
virtual const char* class_name() const override { return "Function"; }
private: