summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Karamanian <karamanian.jack@gmail.com>2020-05-29 22:42:05 -0500
committerAndreas Kling <kling@serenityos.org>2020-05-30 10:33:24 +0200
commit5243e9974d20647c3ef3d94db224a66fdc100db5 (patch)
tree86c35e2a3f4c8c7b556cee915da403c3bf5871aa
parent4e331a1fcf8c64932429d5ecfb57b3dc415c30cf (diff)
downloadserenity-5243e9974d20647c3ef3d94db224a66fdc100db5.zip
LibJS: Remove unnecessary explicit from the 3 argument Function
constructor
-rw-r--r--Libraries/LibJS/Runtime/Function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/Function.h b/Libraries/LibJS/Runtime/Function.h
index 7c6f66e987..88fe2920c6 100644
--- a/Libraries/LibJS/Runtime/Function.h
+++ b/Libraries/LibJS/Runtime/Function.h
@@ -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: