mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibJS: Remove unnecessary explicit from the 3 argument Function
constructor
This commit is contained in:
parent
4e331a1fcf
commit
5243e9974d
Notes:
sideshowbarker
2024-07-19 05:58:33 +09:00
Author: https://github.com/jack-karamanian Commit: https://github.com/SerenityOS/serenity/commit/5243e9974d2 Pull-request: https://github.com/SerenityOS/serenity/pull/2454
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…
Reference in a new issue