1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:27:35 +00:00

LibJS: Remove pointless 'explicit' from a couple of constructors

This commit is contained in:
Linus Groh 2021-07-21 23:45:44 +01:00
parent c65424d806
commit bece2093f2
5 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ class Calendar final : public Object {
JS_OBJECT(Calendar, Object);
public:
explicit Calendar(String identifier, Object& prototype);
Calendar(String identifier, Object& prototype);
virtual ~Calendar() override = default;
String const& identifier() const { return m_identifier; }