From 5243e9974d20647c3ef3d94db224a66fdc100db5 Mon Sep 17 00:00:00 2001 From: Jack Karamanian Date: Fri, 29 May 2020 22:42:05 -0500 Subject: [PATCH] LibJS: Remove unnecessary explicit from the 3 argument Function constructor --- Libraries/LibJS/Runtime/Function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibJS/Runtime/Function.h b/Libraries/LibJS/Runtime/Function.h index 7c6f66e987c..88fe2920c63 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 bound_arguments); + Function(Object& prototype, Value bound_this, Vector bound_arguments); virtual const char* class_name() const override { return "Function"; } private: