1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

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

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: