mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:17:35 +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
|
@ -17,7 +17,7 @@ class Instant final : public Object {
|
|||
JS_OBJECT(Instant, Object);
|
||||
|
||||
public:
|
||||
explicit Instant(BigInt& nanoseconds, Object& prototype);
|
||||
Instant(BigInt& nanoseconds, Object& prototype);
|
||||
virtual ~Instant() override = default;
|
||||
|
||||
BigInt const& nanoseconds() const { return m_nanoseconds; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue