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:
parent
4e331a1fcf
commit
5243e9974d
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue