1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47: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

@ -15,7 +15,7 @@ class PlainDate final : public Object {
JS_OBJECT(PlainDate, Object);
public:
explicit PlainDate(i32 iso_year, i32 iso_month, i32 iso_day, Object& calendar, Object& prototype);
PlainDate(i32 iso_year, i32 iso_month, i32 iso_day, Object& calendar, Object& prototype);
virtual ~PlainDate() override = default;
[[nodiscard]] i32 iso_year() const { return m_iso_year; }