1
Fork 0
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:
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 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; }