diff options
-rw-r--r-- | Libraries/LibJS/Runtime/Function.h | 2 |
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: |