mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:47:45 +00:00
LibJS: Remove pointless 'explicit' from a couple of constructors
This commit is contained in:
parent
c65424d806
commit
bece2093f2
5 changed files with 5 additions and 5 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue